MCPcopy Create free account
hub / github.com/IoLanguage/io / UArray_superfastHash

Function UArray_superfastHash

libs/basekit/source/UArray_math.c:507–509  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

505#include "Hash_murmur.h"
506
507uintptr_t UArray_superfastHash(UArray *self) {
508 return SuperFastHash((char *)(self->data), (int)UArray_sizeInBytes(self));
509}
510
511uintptr_t UArray_fnvHash(UArray *self) {
512 return (uintptr_t)fnv_32_buf((void *)(self->data), UArray_sizeInBytes(self),

Callers 1

UArray_calcOddHashFunction · 0.85

Calls 2

SuperFastHashFunction · 0.85
UArray_sizeInBytesFunction · 0.85

Tested by

no test coverage detected