clojure.lang.PersistentHashMap.LeafNode.without C# (CSharp) Метод

without() публичный Метод

public without ( int hash, object key ) : INode
hash int
key object
Результат INode
            public INode without(int hash, object key)
            {
                return (hash == _hash && Util.equals(key, _key))
                   ? null
                   : this;
            }