ahtable

An array hash data structure where array is allocated up front with specific size and each element is assigned to each index based on hash function. Each element in an array is a Vec. Each collision of hash will be push into Vec. When number of added element reach certain size, it will scale the size of array by 2x and all old entry will be moved from old array to new one. All of this happen behind the scene. User will not effect by such operation.

How to use

  1. Use ArrayHashBuilder::default()
  2. Config all required specification of array hash with the builder
  3. Use build() method on the instance to obtain ArrayHash
  4. Use following method to operate on the array
    1. put() to put new data into array. This method always put or replace existing value.
    2. try_put() to put new data into array if it is not already exist.
    3. get() to retrieve a value that was put into it by a key of a type that is hashable and comparable to key.
    4. smart_get() to retrieve a value when key is of smart pointer type. This will help reduce time processor required to construct a smart pointer of the same type as key itself.
    5. coerce_get() to retrieve a value when key is of a type that can be borrowed as another type which isn't implement PartialEq<K> to the original type.
    6. remove() to remove a value out of this array by a key of a type that is hashable and comparable to key.
    7. smart_remove() to retrieve a value when key is of smart pointer type. This will help reduce time processor required to construct a smart pointer of the same type as key itself.
    8. coerce_remove() to remove a value when key is of a type that can be borrowed as another type which isn't implement PartialEq<K> to the original type.
    9. contains_iter to test whether current array have every entry that the iterator yield.
    10. to_builder to obtain ArrayHashBuilder with current spec out of existing array.
    11. iter() to iterate over the array entry.
    12. iter_mut() to iterate and mutate the array entry. This iterator shall not be used to mutate the entry key.
    13. drain() to obtain an iterator that keep draining all data from this array out.
    14. drain_with() to obtain an iterator that drain some specific entry out when predicate return true.
    15. split_by() which return another array and move all value that satisfy the predicate into new array.
    16. is_hasher_eq() to check whether two array have equivalence hasher.

Breaking change from 0.1 to 0.2

Migration guide from 0.1 to 0.2

  1. for any if let Some(v) = array_hash.try_put(key, value), it'd become if let Err((key, value, cur_val) = array_hash.try_put(key, value)
  2. for any if array_hash.try_put(key, value).is_some(), it'd become if array_hash.try_put(key, value).is_err()
  3. for any if array_hash.try_put(key, value).is_none(), it'd become if array_hash.try_put(key, value).is_ok()
  4. for any statement array_hash.try_put(key, value);, it'd become array_hash.try_put(key, value).unwrap()
  5. for any let cur_v = array_hash.try_put(key, value).unwrap(), it'd become let (_, _, cur_v) = array_hash.try_put(key, value).unwrap_err()

Important notes

  1. PartialEq of ArrayHash need both comparator and comparatee to be exactly the same. This including Hasher which must be seed by exactly the same number. The ideal usage is to fill largest array first then use ArrayHash::to_builder to build second array. If it is impossible, consider construct an ArrayHash that is large enough to stored everything without reaching max_load_factor then use ArrayHash::to_builder or clone that ArrayHashBuilder to build every array.
  2. There's method ArrayHash::is_hasher_eq to test whether two array can be compared. If two arrays are using different type of hasher, it will immediately yield compile error. If it use the same type of hasher but it use different seed, it will return false. Otherwise, it is comparable via == operator.
  3. Directly using == operator on two arrays are safe. It will compile error similar to ArrayHash::is_hasher_eq. In fact, in PartialEq implementation, it use ArrayHash::is_hasher_eq to check first if it is comparable. However, it will always return false if two array use different seed even if both array have exactly the same elements in it.
  4. It is much faster to use == operator to compare two arrays than using ArrayHash::contains_iter as contains_iter will need to hash every key return by iter. The contains_iter method is suitable in case where two arrays are using different hasher type or built from different `ArrayHashBuilder.

What's new

0.2.0