Support Class Library
A set of tools providing classes and utility
|
#include <scl/stream/details/deprecation.h>
#include <vector>
#include <scl/stream/Stream.h>
#include <scl/stream/details/iterator/EndStreamIterator.h>
Go to the source code of this file.
Classes | |
class | scl::stream::terminators::pack::details::VectorPacker< T, Allocator > |
Class that allows packing to a std::vector. More... | |
struct | scl::stream::terminators::pack::details::to_vector_toolbox |
Tag type to pack into a vector w/ default template parameters. More... | |
struct | scl::stream::terminators::pack::details::to_vector_toolbox_alloc< Allocator > |
Tag type to pack into a vector w/ control over the allocator. More... | |
Namespaces | |
scl | |
Global namespace of the SCL. | |
scl::stream | |
Namespace of the stream API. | |
scl::stream::terminators | |
Namespace for stream terminal/final operations (eager) | |
scl::stream::terminators::pack | |
A namespace for packing operations (getting a result as a container) | |
scl::stream::terminators::pack::details | |
Implementation details for packing operations. | |
Functions | |
details::to_vector_toolbox | scl::stream::terminators::pack::toVector () |
Terminator that packs into a vector. More... | |
template<class T > | |
pack::details::VectorPacker< T >::result_type | scl::stream::terminators::operator| (const Stream< T > &lhs, const pack::details::to_vector_toolbox &_) |
Pipe operator for packing into a vector. More... | |
template<class T , class Allocator > | |
pack::details::VectorPacker< T, Allocator >::result_type | scl::stream::terminators::operator| (const Stream< T > &lhs, const pack::details::to_vector_toolbox_alloc< Allocator > &_) |
Pipe operator or packing into a vector using a specific allocator. More... | |