hcreate method

int hcreate(
  1. int nel
)

Creates a hash table with at least nel elements. Returns 0 on error, non-zero on success.

Implementation

int hcreate(int nel) {
  if (_hsearchTable != null) return 0;
  _hsearchTable = <String, ENTRY>{};
  return 1;
}