fn() arrayConstruct
Construct objects in a given memory buffer.

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

Parameters

begin Iterator to the begin of the range that is to be constructed.
end Iterator behind the end of the range.
value Argument that is forwarded to the constructor. An appropriate constructor is required. If value is not specified, the default constructor is used.

Detailed Description

The type of the constructed Objects is the value type of begin and end.

Data Races

Thread safety unknown!