Closed JP-Ellis closed 3 years ago
The numerical algorithms return
SearchError
as part of theResult
; however the crate does not exposeSearchError
. As a result, I can call the numerical algorithm functions, but if I wish to pass the result to another function, I cannot actually implement a function with the return typeResult<f64, SearchError>
.Let me know if you would like a PR.
Hi, thank you for using this library. A PR that exposes SearchError
is welcome, as well as the one with extending the info provided by it. Please include at least one test case for each extension.
One-line change
Hey, it seems that the latest available 0.0.6 version still has SearchError private. Could we perhaps get a new release that makes this change officially available
v0.0.7 is published
пн, 14 июн. 2021 г. в 13:58, blagovestb2c2 @.***>:
Hey, it seems that the latest available 0.0.6 version still has SearchError private. Could we perhaps get a new release that makes this change officially available
— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub https://github.com/vorot/roots/issues/10#issuecomment-860627120, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACX6MBPCEX4HITIGTEFXOBTTSXVH5ANCNFSM4WMHNS7A .
The numerical algorithms return
SearchError
as part of theResult
; however the crate does not exposeSearchError
. As a result, I can call the numerical algorithm functions, but if I wish to pass the result to another function, I cannot actually implement a function with the return typeResult<f64, SearchError>
.Let me know if you would like a PR.