C# Class clojure.lang.PersistentStructMap.Seq

Inheritance: clojure.lang.ASeq
Mostra file Open project: richhickey/clojure-clr

Public Methods

Method Description
Seq ( IPersistentMap meta, ISeq keys, object vals, int i, IPersistentMap ext ) : System

Initialize a PersistentStuctMap.Seq.

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.

Method Details

Seq() public method

Initialize a PersistentStuctMap.Seq.
public Seq ( IPersistentMap meta, ISeq keys, object vals, int i, IPersistentMap ext ) : System
meta IPersistentMap The metadata to attach.
keys ISeq The remaining fixed keys.
vals object The values for the fixed keys.
i int The index of the first fixed key.
ext IPersistentMap The non-fixed keys and their values.
return System

first() public method

Gets the first item.
public first ( ) : object
return object

next() public method

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
return ISeq

withMeta() public method

Create a copy with new metadata.
public withMeta ( IPersistentMap meta ) : IObj
meta IPersistentMap The new metadata.
return IObj