Click or drag to resize

DateVector Methods

The DateVector type exposes the following members.

Methods
 NameDescription
Public methodAllChecks whether the predicate is satisfied by all items.
Public methodAnyChecks whether the predicate is satisfied by at least one item.
Public methodCloneCreates an identical vector.
Public methodContainsChecks if the vector contains the given value.
Public methodDistinctReturns a new vector with the distinct values in the original one.
Public methodEquals(DateVector)Checks if the provided argument is a vector with the same values.
Public methodEquals(Object)Checks if the provided argument is a vector with the same values.
(Overrides ValueTypeEquals(Object))
Public methodFilterCreates a new vector by filtering items with the given predicate.
Public methodFilterMapCreates a new vector by filtering and mapping at the same time.
Public methodFind(Date)Returns all indexes containing ocurrences of a value.
Public methodFind(FuncDate, Boolean)Returns all indexes satisfying a condition.
Public methodGetEnumeratorRetrieves an enumerator to iterate over components.
Public methodGetHashCodeReturns the hashcode for this vector.
(Overrides ValueTypeGetHashCode)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodIndexOf(Date)Returns the zero-based index of the first occurrence of a value.
Public methodIndexOf(Date, Int32)Returns the zero-based index of the first occurrence of a value.
Public methodMap Creates a new vector by transforming each item with the given function.
Public methodMaximumGets the item with the maximum value.
Public methodMinimumGets the item with the minimum value.
Public methodReduceCreates an aggregate value by applying the reducer to each item.
Public methodReverseCreates a reversed copy of the vector.
Public methodSafeThis Safe access to the vector's components. If the index is out of range, a zero is returned.
Public methodSortReturns a new vector with sorted values.
Public methodSortDescendingReturns a new vector with sorted values.
Public methodToStringGets a textual representation of this vector.
(Overrides ValueTypeToString)
Public methodToString(String, IFormatProvider)Gets a textual representation of this vector.
Public methodZipCombines the common prefix of two vectors.
Top
See Also