Click or drag to resize

DateSequence Methods

The DateSequence type exposes the following members.

Methods
 NameDescription
Public methodAllChecks whether the predicate is satisfied by all items.
(Inherited from BaseSequenceT, TSelf)
Public methodAnyChecks whether the predicate is satisfied by at least one item.
(Inherited from BaseSequenceT, TSelf)
Public methodClonePerforms a shallow copy of the sequence and performs a reset.
(Inherited from BaseSequenceT, TSelf)
Public methodContainsChecks if the sequence contains the given value.
(Inherited from BaseSequenceT, TSelf)
Public methodStatic memberCreate(DateVector)Creates a date sequence from a vector.
Public methodStatic memberCreate(Date, Date)Creates a sequence from a range.
Public methodStatic memberCreate(Date, Int32, Date)Creates a sequence from a range and a step.
Public methodDistinctGets only the unique values in this sequence.
(Overrides BaseSequenceT, TSelfDistinct)
Public methodEquals(DateSequence)Checks if two sequence has the same length and arguments.
Public methodEquals(Object)Checks if the provided argument is a sequence with the same values.
(Overrides ObjectEquals(Object))
Public methodFilterTransform a sequence acording to the predicate passed as parameter.
(Overrides BaseSequenceT, TSelfFilter(FuncT, Boolean))
Public methodFirstGets the first value in the sequence.
(Inherited from BaseSequenceT, TSelf)
Public methodGetHashCodeReturns the hashcode for this vector.
(Overrides ObjectGetHashCode)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodLastGets the last value in the sequence.
(Inherited from BaseSequenceT, TSelf)
Public methodLengthGets the total number of values in the sequence.
(Inherited from BaseSequenceT, TSelf)
Public methodMapTransform a sequence acording to the function passed as parameter.
(Overrides BaseSequenceT, TSelfMap(FuncT, T))
Public methodMaxGets the maximum value from the sequence.
Public methodMinGets the minimum value from the sequence.
Public methodNextGets the next item in the sequence.
(Inherited from BaseSequenceT, TSelf)
Public methodPlotCreates a plot for this sequence.
Public methodReduceReduces a sequence to a single number.
(Inherited from BaseSequenceT, TSelf)
Public methodStatic memberRepeatCreates a sequence by repeating a value a given number of times.
Public methodResetResets the sequence.
(Inherited from BaseSequenceT, TSelf)
Public methodSortSorts the content of this sequence.
Public methodSortDescendingSorts the content of this sequence in descending order.
Public methodToStringEvaluated the sequence and formats it like a NVector.
(Overrides ObjectToString)
Public methodToString(String, IFormatProvider)Gets a textual representation of this sequence.
Public methodToVectorConverts this sequence into an integer vector.
Public methodStatic memberUnfold(Int32, Date, FuncDate, Date)Creates a sequence by unfolding an initial state by a function.
Public methodStatic memberUnfold(Int32, Date, FuncInt32, Date, Date)Creates a sequence by unfolding an initial state by a function.
Public methodStatic memberUnfold(Int32, Date, Date, FuncDate, Date, Date)Creates a sequence by unfolding an initial state by a function.
Public methodUntil(Date)Get the initial values of a sequence until a value is found.
(Overrides BaseSequenceT, TSelfUntil(T))
Public methodUntil(FuncDate, Boolean)Get the initial values of a sequence until a predicate is satisfied.
(Overrides BaseSequenceT, TSelfUntil(FuncT, Boolean))
Public methodWhileGet the initial values of a sequence that satisfy a predicate.
(Overrides BaseSequenceT, TSelfWhile(FuncT, Boolean))
Public methodZipJoins the common part of two sequence with the help of a lambda.
(Overrides BaseSequenceT, TSelfZip(TSelf, FuncT, T, T))
Top
See Also