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
sliceslice currently only returns a boolean to denote if the substring has been found or not.
Most crate are actually providing the match position.
It would be nice to offer a similar API, but without sacrificing performances.
This should help to ensure correctness (do we find the right needle at the right position?) but also improve the fairness of our benchmarks since we currently actually compare with crates that are returning strictly more information.
The text was updated successfully, but these errors were encountered:
sliceslice
currently only returns a boolean to denote if the substring has been found or not.Most crate are actually providing the match position.
It would be nice to offer a similar API, but without sacrificing performances.
This should help to ensure correctness (do we find the right needle at the right position?) but also improve the fairness of our benchmarks since we currently actually compare with crates that are returning strictly more information.
The text was updated successfully, but these errors were encountered: