Hoogle Search

Within LTS Haskell 24.10 (ghc-9.10.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. pageNodeNKids :: PageNode -> IO Int

    pdf-toolbox-document Pdf.Document.PageNode

    Total number of child leaf nodes, including deep children

  2. pageNodePageByNum :: PageNode -> Int -> IO Page

    pdf-toolbox-document Pdf.Document.PageNode

    Find page by it's number Note: it is not efficient for PDF files with a lot of pages, because it performs traversal through the page tree each time. Use pageNodeNKids, pageNodeKids and loadPageNode for efficient traversal.

  3. pageNodeParent :: PageNode -> IO (Maybe PageNode)

    pdf-toolbox-document Pdf.Document.PageNode

    Parent page node

  4. pageDesiredRange :: Page record typ -> DesiredRange typ

    persistent-pagination Database.Esqueleto.Pagination

    The desired range in the next page of values. When the pageSortOrder is Ascending, then the rangeMin value will increase with each page until the set of data is complete. Likewise, when the pageSortOrder is Descending, then the rangeMax will decrease until the final page is reached.

  5. pageField :: Page record typ -> EntityField record typ

    persistent-pagination Database.Esqueleto.Pagination

    The field to sort on. This field should have an index on it, and ideally, the field should be monotonic - that is, you can only insert values at either extreme end of the range. A created_at timestamp or autogenerated ID work great for this. Non-monotonic keys can work too, but you may miss records that are inserted during a traversal.

  6. pageFilters :: Page record typ -> SqlExpr (Entity record) -> SqlExpr (Value Bool)

    persistent-pagination Database.Esqueleto.Pagination

    The extra filters that are placed on the query.

  7. pageRange :: Page record typ -> Range typ

    persistent-pagination Database.Esqueleto.Pagination

    The minimum and maximum value of typ in the list.

  8. pageRecordCount :: Page record typ -> Int

    persistent-pagination Database.Esqueleto.Pagination

    The count of records in the collection. If this number is less than the pageSize field, then a call to nextPage will result in Nothing.

  9. pageRecords :: Page record typ -> [Entity record]

    persistent-pagination Database.Esqueleto.Pagination

    The collection of records.

  10. pageSize :: Page record typ -> PageSize

    persistent-pagination Database.Esqueleto.Pagination

    The desired size of the Page for successive results.

Page 24 of many | Previous | Next