C# Класс clojure.lang.APersistentVector.RSeq

Internal class providing reverse ISeq functionality for APersistentVector.
This class should be private. Public only for DLR debugging output.
Наследование: clojure.lang.ASeq, IndexedSeq, IReduce, Counted
Показать файл Открыть проект

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

Метод Описание
RSeq ( IPersistentVector v, int i ) : System

Initialize a reverse sequence over a vector with the first element at a given index.

count ( ) : int

Gets the number of items in the collection.

first ( ) : object

Gets the first item.

index ( ) : int

Gets the index associated with this sequence.

reduce ( IFn f ) : object

Reduce the collection using a function.

reduce ( IFn f, object start ) : object

Reduce the collection using a function.

rest ( ) : ISeq

Gets the rest of the sequence.

withMeta ( IPersistentMap meta ) : IObj

Create a copy with new metadata.

Приватные методы

Метод Описание
RSeq ( IPersistentMap meta, IPersistentVector v, int i ) : System

Initialize a reverse sequence over a vector with the first element at a given index, with the given metadata.

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

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

Initialize a reverse sequence over a vector with the first element at a given index.
public RSeq ( IPersistentVector v, int i ) : System
v IPersistentVector The vector to sequence over.
i int The index to start at.
Результат System

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

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

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

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

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

Gets the index associated with this sequence.
public index ( ) : int
Результат int

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

Reduce the collection using a function.
public reduce ( IFn f ) : object
f IFn The function to apply.
Результат object

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

Reduce the collection using a function.
public reduce ( IFn f, object start ) : object
f IFn The function to apply.
start object An initial value to get started.
Результат object

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

Gets the rest of the sequence.
public rest ( ) : ISeq
Результат ISeq

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

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