1/*!
2This module defines "generic" routines that can be specialized to specific
3architectures.
4
5We don't expose this module primarily because it would require exposing all
6of the internal infrastructure required to write these generic routines.
7That infrastructure should be treated as an implementation detail so that
8it is allowed to evolve. Instead, what we expose are architecture specific
9instantiations of these generic implementations. The generic code just lets us
10write the code once (usually).
11*/
12
13pub(crate) mod memchr;
14pub(crate) mod packedpair;
15