You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Follow-on from #68. Pdfium does not provide a way to determine how many links are included in a page. For the PdfPageLinks::len() function, #68 implemented a very naive linear traversal to discover the number of links. Rework this, and associated functions, to use a binary search technique instead for improved performance.
The text was updated successfully, but these errors were encountered:
Reworked PdfPageLinks::len() to use a sliding interval search technique rather than linear traversal. Simplified PdfPageLinksIterator implementation. Completed in time for release 0.7.34.
Fixed minor typos in documentation. Added a new NoPageLinksInCollection enum variant to PdfiumError rather than reusing NoPageObjectsInCollection variant. Improved performance of PdfPageLinks::first() and PdfPageLinks::last() functions.
Follow-on from #68. Pdfium does not provide a way to determine how many links are included in a page. For the
PdfPageLinks::len()
function, #68 implemented a very naive linear traversal to discover the number of links. Rework this, and associated functions, to use a binary search technique instead for improved performance.The text was updated successfully, but these errors were encountered: