mod.rs |
!
This module defines tests and test helpers for substring implementations.
|
8430 |
naive.rs |
!
This module defines "naive" implementations of substring search.
These are sometimes useful to compare with "real" substring implementations.
The idea is that they are so simple that they are unlikely to be incorrect.
|
1232 |
prop.rs |
!
This module defines a few quickcheck properties for substring search.
It also provides a forward and reverse macro for conveniently defining
quickcheck tests that run these properties over any substring search
implementation.
|
3903 |