Свойство | Тип | Описание | |
---|---|---|---|
_hash | int | ||
_impl | IPersistentMap |
Метод | Описание | |
---|---|---|
CopyTo ( |
||
Equals ( object obj ) : bool |
Determines whether the specified Object is equal to the current Object.
|
|
GetEnumerator ( ) : IEnumerator | ||
GetHashCode ( ) : int |
Computes a hash code for the current object. The hash code is value-based (based on the items in the set). Once computed, the value is cached. |
|
ToString ( ) : string |
Returns a string representing the current object.
|
|
cons ( object o ) : IPersistentCollection | ||
contains ( object key ) : bool |
Test if the set contains the key.
|
|
count ( ) : int |
Gets the number of items in the collection.
|
|
disjoin ( object key ) : IPersistentSet |
Get a set with the given item removed.
|
|
empty ( ) : IPersistentCollection | ||
equiv ( object o ) : bool |
Determine if an object is equivalent to this (handles all collections).
|
|
get ( object key ) : object |
Get the value for the key (= the key itself, or null if not present).
|
|
invoke ( object arg1 ) : object | ||
seq ( ) : ISeq |
Gets an ISeq to allow first/rest iteration through the collection.
|
Метод | Описание | |
---|---|---|
APersistentSet ( IPersistentMap meta, IPersistentMap impl ) : System |
Initialize an
|
protected APersistentSet ( IPersistentMap meta, IPersistentMap impl ) : System | ||
meta | IPersistentMap | The metadata |
impl | IPersistentMap | The underlying implementation map |
Результат | System |
public CopyTo ( |
||
array | ||
index | int | |
Результат | void |
public Equals ( object obj ) : bool | ||
obj | object | The Object to compare with the current Object. |
Результат | bool |
public abstract cons ( object o ) : IPersistentCollection | ||
o | object | |
Результат | IPersistentCollection |
public contains ( object key ) : bool | ||
key | object | The value to test for membership in the set. |
Результат | bool |
public abstract disjoin ( object key ) : IPersistentSet | ||
key | object | The item to remove. |
Результат | IPersistentSet |
public abstract empty ( ) : IPersistentCollection | ||
Результат | IPersistentCollection |
public equiv ( object o ) : bool | ||
o | object | The object to compare. |
Результат | bool |
public get ( object key ) : object | ||
key | object | The value to test for membership in the set. |
Результат | object |