Array.linearRemove

Removes all elements belonging to r, which must be a range obtained originally from this array.

struct Array(T)
linearRemove
if (
is(immutable T == immutable bool)
)

Return Value

Type: Range

A range spanning the remaining elements in the array that initially were right after r.

Complexity: O(length)

Meta