C# 클래스 clojure.lang.ArrayChunk

상속: IChunk
파일 보기 프로젝트 열기: richhickey/clojure-clr 1 사용 예제들

공개 메소드들

메소드 설명
ArrayChunk ( object array, int off ) : System
ArrayChunk ( object array, int off, int end ) : System
count ( ) : int
dropFirst ( ) : IChunk
nth ( int i ) : object
nth ( int i, object notFound ) : object
reduce ( IFn f, object start ) : object

메소드 상세

ArrayChunk() 공개 메소드

public ArrayChunk ( object array, int off ) : System
array object
off int
리턴 System

ArrayChunk() 공개 메소드

public ArrayChunk ( object array, int off, int end ) : System
array object
off int
end int
리턴 System

count() 공개 메소드

public count ( ) : int
리턴 int

dropFirst() 공개 메소드

public dropFirst ( ) : IChunk
리턴 IChunk

nth() 공개 메소드

public nth ( int i ) : object
i int
리턴 object

nth() 공개 메소드

public nth ( int i, object notFound ) : object
i int
notFound object
리턴 object

reduce() 공개 메소드

public reduce ( IFn f, object start ) : object
f IFn
start object
리턴 object