C# Класс clojure.lang.StringSeq

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

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

Метод Описание
count ( ) : int

Gets the number of items in the collection.

The Java version does not define this. Defaults to ASeq's iteration method. Seems wasteful

create ( string s ) : StringSeq

Create a StringSeq from a String.

first ( ) : object

Gets the first item.

index ( ) : int

Gets the index associated with this sequence.

rest ( ) : ISeq

Gets the rest of the sequence.

withMeta ( IPersistentMap meta ) : IObj

Create a copy with new metadata.

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

Метод Описание
StringSeq ( IPersistentMap meta, string s, int i ) : System

Construct a StringSeq from given metadata, string, position.

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

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

Gets the number of items in the collection.
The Java version does not define this. Defaults to ASeq's iteration method. Seems wasteful
public count ( ) : int
Результат int

create() публичный статический Метод

Create a StringSeq from a String.
public static create ( string s ) : StringSeq
s string
Результат StringSeq

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

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

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

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

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