C# 클래스 clojure.lang.StringSeq

상속: clojure.lang.ASeq, IndexedSeq
파일 보기 프로젝트 열기: arohner/clojure-contrib 1 사용 예제들

공개 메소드들

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