Support Class Library
A set of tools providing classes and utility
stl_containers.h
Go to the documentation of this file.
1 #pragma once
4 #include <scl/macros.h>
6 
7 namespace scl{
8  namespace stream{
9  namespace creators{
17  template <class C, class It = typename C::iterator>
19  return streamFrom<It>(std::begin(container), std::end(container));
20  }
21  }
22  }
23 }
Global namespace of the SCL.
Definition: alias.hpp:3
Stream< T > streamFrom(std::array< T, N > a)
Create an scl::stream::Stream from a std::array.
Definition: array.h:71
Class representing a stream of data.
Definition: Stream.h:15