tanya.range.adapter

Range adapters transform some data structures into ranges.

Members

Functions

arrayInserter
auto arrayInserter(Array array)

$(D_PSYMBOL arrayInserter) makes an output range out of an array.

backInserter
auto backInserter(Container container)

If container is a container with insertBack-support, $(D_PSYMBOL backInserter) returns an output range that puts the elements into the container with insertBack.

frontInserter
auto frontInserter(Container container)

If container is a container with insertFront-support, $(D_PSYMBOL frontInserter) returns an output range that puts the elements into the container with insertFront.

Meta