Name
|
Description
|
Clear
|
Clears all elements of the TimeSpanArray.
|
ClearSavedStates
|
Clears previous saved states for this object.
|
Erase
|
Erases the value at the specified index.
|
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.
|
GetFromFile
|
Load the object state from the specified FreeFlyer object file.
|
GetFromString
|
Load the object state from the specified string.
|
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.
|
Insert
|
Inserts the specified value at the specified index of the 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.
|
PopBack
|
Removes the last value of the TimeSpanArray and returns its value. If the TimeSpanArray is empty, an error occurs.
|
PopFront
|
Removes the first value of the TimeSpanArray and returns its value. If the TimeSpanArray is empty, an error occurs.
|
PushBack
|
Adds the specified value to the end of the TimeSpanArray.
|
PushFront
|
Adds the specified value to the start of the TimeSpanArray.
|
PutToFile
|
Convert the object state to FreeFlyer object xml and write to a file.
|
PutToString
|
Convert the object state to FreeFlyer object xml and return as a string.
|
ReferenceEquals
|
Returns 1 if the argument refers to the calling object and 0 otherwise.
|
Restore
|
Restore an object's state from a previously saved state.
|
Reverse
|
Performs an in-place reversal of the TimeSpanArray elements.
|
Reversed
|
Returns a copy of the TimeSpanArray with the elements in reverse order.
|
Save
|
Save the object's state so that it can be restored later.
|
Shuffle
|
Randomly shuffles the elements of the calling TimeSpanArray. Calling SeedNoise will set the seed for this method.
|
SortAscending
|
Sorts the elements of the array in ascending order (smallest to largest).
|
SortDescending
|
Sorts the elements of the array in descending order (largest to smallest).
|
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.
|