MCPcopy
hub / github.com/yangshun/lago / ObjectWithValue

Interface ObjectWithValue

test/data-structures/BloomFilter.test.ts:3–5  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import { BloomFilter } from '../../src';
2
3interface ObjectWithValue {
4 value: number;
5}
6
7const OBJECT_HASH_FUNCTIONS: Array<(item: ObjectWithValue) => number> = [
8 (x) => (25 * x.value + 13) % 31,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected