C# Class clojure.lang.PersistentHashMap.LeafNode

Represents a leaf node in the tree, corresponding to single map entry (key/value).
Inheritance: clojure.lang.AMapEntry, INode
Afficher le fichier Open project: arohner/clojure-contrib

Méthodes publiques

Méthode Description
LeafNode ( int hash, object key, object val ) : System
assoc ( int shift, int hash, object key, object val, clojure.lang.Box addedLeaf ) : INode
find ( int hash, object key ) : INode
getHash ( ) : int
key ( ) : object
nodeSeq ( ) : ISeq
val ( ) : object
without ( int hash, object key ) : INode

Method Details

LeafNode() public méthode

public LeafNode ( int hash, object key, object val ) : System
hash int
key object
val object
Résultat System

assoc() public méthode

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
Résultat INode

find() public méthode

public find ( int hash, object key ) : INode
hash int
key object
Résultat INode

getHash() public méthode

public getHash ( ) : int
Résultat int

key() public méthode

public key ( ) : object
Résultat object

nodeSeq() public méthode

public nodeSeq ( ) : ISeq
Résultat ISeq

val() public méthode

public val ( ) : object
Résultat object

without() public méthode

public without ( int hash, object key ) : INode
hash int
key object
Résultat INode