$allocate static method
Implementation
static ffi.Pointer<GameHashTable> $allocate(
ffi.Allocator $allocator, {
required ffi.Pointer<GameHash> array,
required int size,
required int mask,
required int n_tries,
required int n_hits,
}) => $allocator<GameHashTable>()
..ref.array = array
..ref.size = size
..ref.mask = mask
..ref.n_tries = n_tries
..ref.n_hits = n_hits;