folly::gen::appendTo

Appends each value of a sequence to an existing collection.

Synopsis

Declared in <folly/gen/Base.h>

template<
    class Collection,
    class Append = /* implementation-defined */>
Append
appendTo(Collection& collection);

Return Value

A sink that appends the sequence to collection.

Parameters

NameDescription
collectionThe collection that values are appended to.