HashTree<TKey, TValue> sealed class HashTree<TKey, TValue> Documentation Code public static HashTree<TKey, TValue> Empty { get; } public bool IsEmpty { get; } public HashTree() public void AddOrUpdate(TKey key, TValue value) public TValue GetOrDefault(TKey key) public IEnumerable<KeyValue<TKey, TValue>> Walk() public IEnumerable<TValue> WalkOnValues()