fn() arrayFill
Assigns one object to each element of a range.

Defined in <seqan/basic.h>
Signature void arrayFill(begin, end, value[, parallelTag]);

Parameters

begin Iterator to the begin of the range that is to be filled.
end Iterator behind the end of the range.
value Argument that is assigned to all count objects in array.
parallelTag Tag to enable/disable parallelism. Types: Serial, Parallel

Detailed Description

All objects target_begin[0] to target_begin[count-1] are set to value.

Data Races

Thread safety unknown!