Options
All
  • Public
  • Public/Protected
  • All
Menu

External module incremental

murmurhash-native/incremental module.

Example:

import { MurmurHash128x64 } from "murmurhash-native/incremental"

let hasher = new MurmurHash128x64(42)
hasher.update("hash ")
hasher.update("me!")
console.log(hasher.digest("hex"))

This module hosts native implementations of incremental murmur hashes.

Index

Type aliases

Endianness

Endianness: "BE" | "LE" | "platform"

An endianness type for the murmur hash incremental utilities

Generated using TypeDoc