C# Класс clojure.lang.PersistentArrayMap.Seq

Internal class providing an ISeq for PersistentArrayMaps.
Наследование: clojure.lang.ASeq, Counted
Показать файл Открыть проект

Открытые методы

Метод Описание
Seq ( IPersistentMap meta, object array, int i ) : System

Initialize the sequence with given metatdata and array/index.

Seq ( object array, int i ) : System

Initialize the sequence to a given array and index.

count ( ) : int

Gets the number of items in the collection.

first ( ) : object

Gets the first item.

next ( ) : ISeq

Return a seq of the items after the first. Calls seq on its argument. If there are no more items, returns nil."

withMeta ( IPersistentMap meta ) : IObj

Create a copy with new metadata.

Описание методов

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

Initialize the sequence with given metatdata and array/index.
public Seq ( IPersistentMap meta, object array, int i ) : System
meta IPersistentMap The metadata to attach.
array object The array being sequenced over.
i int The current index.
Результат System

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

Initialize the sequence to a given array and index.
public Seq ( object array, int i ) : System
array object The array being sequenced over.
i int The current index.
Результат System

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

Gets the number of items in the collection.
public count ( ) : int
Результат int

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

Gets the first item.
public first ( ) : object
Результат object

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

Return a seq of the items after the first. Calls seq on its argument. If there are no more items, returns nil."
public next ( ) : ISeq
Результат ISeq

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

Create a copy with new metadata.
public withMeta ( IPersistentMap meta ) : IObj
meta IPersistentMap The new metadata.
Результат IObj