-
Enhancement
-
Resolution: Fixed
-
P3
-
None
-
repo-panama
Two issues have been reported against the LibraryLookup API:
* the LibraryLookup::ofPath factory takes a String instead of a Path; this is less user-friendly, and also inconsistent with MemorySegment::mapFromPath
* LibraryLookup::lookup currently throws NoSuchMethodException when lookup fails; this doesn't make a lot of sense, since we're not really looking up methods. Also, the fact that we use an exception is inconvenient and make the lookup less composable (e.g. when users want to chain together results from multiple lookups) - returning an Optional could be a better option
* the LibraryLookup::ofPath factory takes a String instead of a Path; this is less user-friendly, and also inconsistent with MemorySegment::mapFromPath
* LibraryLookup::lookup currently throws NoSuchMethodException when lookup fails; this doesn't make a lot of sense, since we're not really looking up methods. Also, the fact that we use an exception is inconvenient and make the lookup less composable (e.g. when users want to chain together results from multiple lookups) - returning an Optional could be a better option