$allocate static method
Implementation
static ffi.Pointer<HashTable> $allocate(
ffi.Allocator $allocator, {
required ffi.Pointer<ffi.Void> memory,
required ffi.Pointer<Hash> hash,
required ffi.Pointer<HashLock> lock,
required int hash_mask,
required int lock_mask,
required int n_hash,
required int n_lock,
required int date,
}) => $allocator<HashTable>()
..ref.memory = memory
..ref.hash = hash
..ref.lock = lock
..ref.hash_mask = hash_mask
..ref.lock_mask = lock_mask
..ref.n_hash = n_hash
..ref.n_lock = n_lock
..ref.date = date;