C# Class clojure.lang.PersistentHashMap.EmptyNode

A node with no keys. Represents the empty map.
Inheritance: INode
显示文件 Open project: arohner/clojure-contrib

Public Methods

Method Description
assoc ( int shift, int hash, object key, object val, clojure.lang.Box addedLeaf ) : INode
find ( int hash, object key ) : INode
getHash ( ) : int
nodeSeq ( ) : ISeq
without ( int hash, object key ) : INode

Method Details

assoc() public method

public assoc ( int shift, int hash, object key, object val, clojure.lang.Box addedLeaf ) : INode
shift int
hash int
key object
val object
addedLeaf clojure.lang.Box
return INode

find() public method

public find ( int hash, object key ) : INode
hash int
key object
return INode

getHash() public method

public getHash ( ) : int
return int

nodeSeq() public method

public nodeSeq ( ) : ISeq
return ISeq

without() public method

public without ( int hash, object key ) : INode
hash int
key object
return INode