The OpenD Programming Language

SList.remove

Removes the first instance of value found in the list.

Complexity: O(length)

struct SList(T, Allocator = Mallocator, bool supportGC = shouldAddGCRange!T)
@trusted
bool
remove
(
V
)
()

Return Value

Type: bool

true if a value was removed.

Meta