Jpp test-rotations-new
the software that should make you happy
Loading...
Searching...
No Matches
JCSV.hh File Reference

Utility method to assign multiple values to STD container. More...

#include <iterator>
#include "JLang/JClass.hh"
#include "JLang/JSTDTypes.hh"
#include "JLang/JSTDObjectWriter.hh"

Go to the source code of this file.

Classes

class  JLANG::JAssignSequence< T >
 Auxiliary class to assign a sequence of Comma Separated Values (CSV). More...
 
struct  JLANG::JAssignSequence< T >::JCSV
 Auxiliary class to assign the remainder of a sequence of Comma Separated Values. More...
 

Namespaces

namespace  JLANG
 Auxiliary classes and methods for language specific functionality.
 
namespace  JPP
 This name space includes all other name spaces (except KM3NETDAQ, KM3NET and ANTARES).
 

Functions

template<class JOutputIterator_t >
JAssignSequence< typename JOutputIterator_t::container_type::value_type > JLANG::iter_assign (const JOutputIterator_t &out)
 Helper method to assign sequence of Comma Separated Values to output iterator.
 
template<class JContainer_t >
JAssignSequence< typename JContainer_t::value_type > JLANG::assign (JContainer_t &out)
 Helper method to assign sequence of Comma Separated Values to output container.
 
template<class JOutputIterator_t >
JAssignSequence< typename JOutputIterator_t::container_type::value_type > JLANG::assign (const JOutputIterator_t &out)
 Helper method to assign sequence of Comma Separated Values to output iterator.
 

Detailed Description

Utility method to assign multiple values to STD container.

#include <set>
#include "JLang/JCSV.hh"
using namespace std;
using namespace JLANG;
set<double> buffer;
assign(buffer) = 1.1, 9.9, 8.8, 7.7;
Utility method to assign multiple values to STD container.
Auxiliary classes and methods for language specific functionality.
Author
mdejong

Definition in file JCSV.hh.