tanya.algorithm.mutation

Algorithms that modify its arguments.

Members

Functions

copy
Target copy(Source source, Target target)

Copies the source range into the target range.

destroyAll
void destroyAll(Range range)

Destroys all elements in the range.

fill
void fill(Range range, Value value)

Fills range with value.

initializeAll
void initializeAll(Range range)

Initializes all elements of the range assuming that they are uninitialized.

uninitializedFill
void uninitializedFill(Range range, Value value)

Fills range with value assuming the elements of the range aren't initialized.

Meta