Crate stringzilla

source ·

Modules§

  • The sz module provides a collection of string searching and manipulation functionality, designed for high efficiency and compatibility with no_std environments. This module offers various utilities for byte string manipulation, including search, reverse search, and edit-distance calculations, suitable for a wide range of applications from basic string processing to complex text analysis tasks.

Traits§

  • Provides a tool for mutating a byte slice by filling it with random data from a specified alphabet. This trait is especially useful for types that need to be mutable and can reference or be converted to byte slices.
  • Provides extensions for string searching and manipulation functionalities on types that can reference byte slices (u8). This trait extends the capability of any type implementing AsRef<[u8]>, allowing easy integration of SIMD-accelerated string processing functions.