|
| template<typename T > |
| span< T > | makeSpan (std::vector< T > &container) |
| |
| template<typename T > |
| span< T > | makeSpan (const std::vector< T > &container) |
| |
| template<typename T > |
| bool | writeSpan (iOstream &os, span< T > sp) |
| |
| template<typename T > |
| bool | writeSpan (iOstream &os, span< T > sp, const IOPattern &iop) |
| |
| template<typename T , typename Allocator > |
| bool | writeStdVector (iOstream &os, const std::vector< T, Allocator > &vec) |
| |
| template<typename T , typename Allocator > |
| bool | writeStdVector (iOstream &os, const std::vector< T, Allocator > &vec, const IOPattern &iop) |
| |
| template<typename T , typename Allocator > |
| bool | readStdVector (iIstream &is, std::vector< T, Allocator > &vec) |
| |
| template<typename T , typename Allocator > |
| bool | readStdVector (iIstream &is, std::vector< T, Allocator > &vec, const IOPattern &iop) |
| |
| template<typename T , typename Allocator > |
| iOstream & | operator<< (iOstream &os, const std::vector< T, Allocator > &vec) |
| |
| template<typename T , typename Allocator > |
| iIstream & | operator>> (iIstream &is, std::vector< T, Allocator > &vec) |
| | Always assume ASCII is in the input stream. More...
|
| |