C# 클래스 clojure.lang.PersistentArrayMap.Seq

Internal class providing an ISeq for PersistentArrayMaps.
상속: clojure.lang.ASeq, Counted
파일 보기 프로젝트 열기: richhickey/clojure-clr

공개 메소드들

메소드 설명
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