Name
|
Description
|
FindAll
|
Finds all indices at which the specified value is present.
|
FindFirst
|
Finds the first index at which the specified value is present. If the value is not present in the array, -1 will be returned.
|
FindLast
|
Finds the last index at which the specified value is present. If the value is not present in the array, -1 will be returned.
|
GetShuffledElements
|
Returns a copy of the calling TimeSpanArray where the elements have been randomly shuffled. Calling SeedNoise will set the seed for this method.
|
GetUniqueElements
|
Returns a TimespanArray containing the unique elements of the calling TimeSpanArray in the order in which they appeared in the calling TimeSpanArray.
|
IsEqualTo
|
Determines if the size and element values of the specified TimeSpanArray are the same as the calling TimeSpanArray.
|
Max
|
Returns the maximum value contained in the array.
|
Median
|
Returns the median value contained in the array.
|
Min
|
Returns the minimum value contained in the array.
|
Reversed
|
Returns a copy of the TimeSpanArray with the elements in reverse order.
|
SortedAscending
|
Returns a copy of the calling TimeSpanArray sorted in ascending order.
|
SortedDescending
|
Returns a copy of the calling TimeSpanArray sorted in descending order.
|
ToArrayAsDays
|
Converts the TimeSpanArray to an Array with units of days. Because FreeFlyer Variables are internally stored as 64-Bit floating-point, precision may be lost in the conversion.
|
ToArrayAsHours
|
Converts the TimeSpanArray to an Array with units of hours. Because FreeFlyer Variables are internally stored as 64-Bit floating-point, precision may be lost in the conversion.
|
ToArrayAsMicroseconds
|
Converts the TimeSpanArray to an Array with units of microseconds. Because FreeFlyer Variables are internally stored as 64-Bit floating-point, precision may be lost in the conversion.
|
ToArrayAsMilliseconds
|
Converts the TimeSpanArray to an Array with units of milliseconds. Because FreeFlyer Variables are internally stored as 64-Bit floating-point, precision may be lost in the conversion.
|
ToArrayAsMinutes
|
Converts the TimeSpanArray to an Array with units of minutes. Because FreeFlyer Variables are internally stored as 64-Bit floating-point, precision may be lost in the conversion.
|
ToArrayAsNanoseconds
|
Converts the TimeSpanArray to an Array with units of nanoseconds. Because FreeFlyer Variables are internally stored as 64-Bit floating-point, precision may be lost in the conversion.
|
ToArrayAsSeconds
|
Converts the TimeSpanArray to an Array with units of seconds. Because FreeFlyer Variables are internally stored as 64-Bit floating-point, precision may be lost in the conversion.
|
ToArrayAsUnits
|
Converts the TimeSpanArray to an Array where the units of the elements are as specified. Because FreeFlyer Variables are internally stored as 64-Bit floating-point, precision may be lost in the conversion.
|
ToStringArray
|
Returns a copy of the TimeSpanArray in the form of a StringArray. The TimeSpan values will be converted with units specified by the units argument. Because FreeFlyer Variables are internally stored as 64-Bit floating-point, precision may be lost in the conversion.
|
WithUnits
|
Changes the reporting units of the TimeSpanArray. The values of each member TimeSpan will be unaffected.
|