Module rust_releases::search[][src]

Module which contains search strategies, which can be used to go over an index in a certain order

Structs

Bisect

With Bisect, one can perform a binary search over a slice of Releases. This can for example be used to more quickly find a MSRV or the latest working nightly build.

LinearSearch

With LinearSearch, one can iterate over a slice of Releases in a linear ordering.