|
@@ -15,6 +15,8 @@ namespace Invercargill.DataStructures {
|
|
|
return new EnumerableInfo.infer_ultimate (this, EnumerableCategory.IN_MEMORY);
|
|
|
}
|
|
|
|
|
|
+ public override uint length { get { return hash_set.length; }}
|
|
|
+
|
|
|
public Dictionary(HashDelegate<TKey>? key_hash_func = null, EqualityDelegate<TKey>? key_equal_func = null) {
|
|
|
hash_func = key_hash_func ?? Operators.hash<TKey>();
|
|
|
equal_func = key_equal_func ?? Operators.equality<TKey>();
|