proxygen
|
#include <Base-inl.h>
Public Member Functions | |
Append (Collection *collection) | |
template<class Value , class Source > | |
Collection & | compose (const GenImpl< Value, Source > &source) const |
Public Member Functions inherited from folly::gen::Operator< Append< Collection > > | |
ResultGen | compose (const GenImpl< Value, Source > &source) const |
Public Member Functions inherited from folly::gen::FBounded< Self > | |
const Self & | self () const |
Self & | self () |
Private Attributes | |
Collection * | collection_ |
Additional Inherited Members | |
Protected Member Functions inherited from folly::gen::Operator< Append< Collection > > | |
Operator ()=default | |
Operator (Operator &&) noexcept=default | |
Operator (const Operator &)=default | |
Operator & | operator= (Operator &&) noexcept=default |
Operator & | operator= (const Operator &)=default |
Append - For collecting values from a source into a given output container by appending.
This type is usually used through the helper function 'appendTo', like:
vector<int64_t> ids; from(results) | map([](Person& p) { return p.id }) | appendTo(ids);
Definition at line 2267 of file Base-inl.h.
|
inlineexplicit |
Definition at line 2271 of file Base-inl.h.
|
inline |
|
private |
Definition at line 2268 of file Base-inl.h.