use Cursor;
use murmur3_32;
use crateTokenHasher;
/// Hasher that uses MurmurHash3 with absolute value.
///
/// This matches Python's abs(mmh3.hash(token)) behavior, where the signed i32
/// hash is converted to its absolute value.
///
/// The seed field is public for direct customization.