C# Class clojure.lang.ArrayChunk

Inheritance: IChunk
显示文件 Open project: richhickey/clojure-clr Class Usage Examples

Public Methods

Method Description
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

Method Details

ArrayChunk() public method

public ArrayChunk ( object array, int off ) : System
array object
off int
return System

ArrayChunk() public method

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

count() public method

public count ( ) : int
return int

dropFirst() public method

public dropFirst ( ) : IChunk
return IChunk

nth() public method

public nth ( int i ) : object
i int
return object

nth() public method

public nth ( int i, object notFound ) : object
i int
notFound object
return object

reduce() public method

public reduce ( IFn f, object start ) : object
f IFn
start object
return object