Package-level declarations
Types
A sublist view of a sourceList that provides access to a portion of the list within the specified range (start, end). Modifications to the original list are reflected in the sublist.
A sublist view of a sourceList that provides access to a portion of the list within the specified range (start, end). Modifications to the original list are reflected in the sublist.
A sublist view of a sourceList that provides access to a portion of the list within the specified range (start, end). Modifications to the original list are reflected in the sublist.
A sublist view of a sourceList that provides access to a portion of the list within the specified range (start, end). Modifications to the original list are reflected in the sublist.
Represents a list of windows as a list of InPlaceDoubleSubList created from a source DoubleList. Each window is a view into the original list. Changes in the original list will be reflected in the windows.
Represents a list of windows as a list of InPlaceFloatSubList created from a source FloatList. Each window is a view into the original list. Changes in the original list will be reflected in the windows.
Represents a list of windows as a list of InPlaceIntSubList created from a source IntList. Each window is a view into the original list. Changes in the original list will be reflected in the windows.
Represents a list of windows as a list of InPlaceLongSubList created from a source LongList. Each window is a view into the original list. Changes in the original list will be reflected in the windows.
Functions
Splits this list into a list of InPlaceDoubleSubList each not exceeding the given chunkSize. The last list may have less elements than the given chunkSize.
Splits this list into a list of InPlaceFloatSubList each not exceeding the given chunkSize. The last list may have less elements than the given chunkSize.
Splits this list into a list of InPlaceIntSubList each not exceeding the given chunkSize. The last list may have less elements than the given chunkSize.
Splits this list into a list of InPlaceLongSubList each not exceeding the given chunkSize. The last list may have less elements than the given chunkSize.
Iterates through the windows of the list and performs the given action on each window.
Iterates through the windows of the list with their indices and performs the given action on each window.
Returns a WindowedDoubleList with the given windowSize sliding by step. Each window is a view into the original list.
Returns a WindowedFloatList with the given windowSize sliding by step. Each window is a view into the original list.
Returns a WindowedIntList with the given windowSize sliding by step. Each window is a view into the original list.
Returns a WindowedLongList with the given windowSize sliding by step. Each window is a view into the original list.