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

Наследование: clojure.lang.ASeq
Показать файл Открыть проект

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

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

Initialize a PersistentStuctMap.Seq.

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 a PersistentStuctMap.Seq.
public Seq ( IPersistentMap meta, ISeq keys, object vals, int i, IPersistentMap ext ) : System
meta IPersistentMap The metadata to attach.
keys ISeq The remaining fixed keys.
vals object The values for the fixed keys.
i int The index of the first fixed key.
ext IPersistentMap The non-fixed keys and their values.
Результат System

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