$(D_PSYMBOL arrayInserter) makes an output range out of an array.
If container is a container with insertBack-support, $(D_PSYMBOL backInserter) returns an output range that puts the elements into the container with insertBack.
If container is a container with insertFront-support, $(D_PSYMBOL frontInserter) returns an output range that puts the elements into the container with insertFront.
Eugene Wissner 2018-2020.
Range adapters transform some data structures into ranges.