MapInitWithPolicy
Description
Initialize a map with key callbacks and an explicit probing policy.
Usage example (Cross-references)
Usage examples (Cross-references)
- In
Map.Init.c:117:
.max_probe_count = 32,
};
IntIntMap map = MapInitWithPolicy(i32_hash, i32_compare, custom_policy, &alloc);
bool result = true;- In
Map.Type.c:98:
.max_probe_count = 11,
};
IntIntMap map = MapInitWithPolicy(i32_hash, i32_compare, custom_policy, &alloc);
custom_policy.name = "changed";
Last updated on