C# 클래스 LibiadaCore.Misc.Iterators.IteratorWritableEnd

Iterator tat moves from the end of chain to its beginning. Is able to write values into chain.
상속: IteratorEnd, IWritableIterator
파일 보기 프로젝트 열기: intervals-mining-lab/libiada-core

공개 메소드들

메소드 설명
IteratorWritableEnd ( AbstractChain source ) : System

Initializes a new instance of the IteratorWritableEnd class. Iterator returns single element and shifts by one element.

WriteValue ( IBaseObject value ) : void

Sets a value into current iterator position.

메소드 상세

IteratorWritableEnd() 공개 메소드

Initializes a new instance of the IteratorWritableEnd class. Iterator returns single element and shifts by one element.
/// Thrown if one or more arguments are invalid. ///
public IteratorWritableEnd ( AbstractChain source ) : System
source LibiadaCore.Core.AbstractChain /// Source chain. ///
리턴 System

WriteValue() 공개 메소드

Sets a value into current iterator position.
public WriteValue ( IBaseObject value ) : void
value IBaseObject /// Value to write into current position of iterator. ///
리턴 void