15#include <boost/array.hpp>
31 template <
class ITERATOR>
32 inline std::ostream&
toStream( ITERATOR first,
35 const std::string& open,
36 const std::string& close,
37 const std::string& delim );
46 template <
class TYPE, std::
size_t N>
47 inline std::ostream&
toStream(
const boost::array<TYPE, N>& obj, std::ostream& s ) {
48 return toStream( obj.begin(), obj.end(), s,
"( ",
" )",
" , " );
64 template <
class TYPE, std::
size_t N>
66 typedef std::vector<TYPE> _Vct;
74 std::copy( tmp.begin(), tmp.end(), result.begin() );
The declaration of major parsing functions used e.g for (re)implementation of new extended properties...
This class is used for returning status codes from appropriate routines.
constexpr static const auto SUCCESS
constexpr static const auto FAILURE
StatusCode parse(GaudiUtils::HashMap< K, V > &result, std::string_view input)
Basic parser for the types of HashMap used in DODBasicMapper.
std::ostream & toStream(ITERATOR first, ITERATOR last, std::ostream &s, const std::string &open, const std::string &close, const std::string &delim)
the helper function to print the sequence
This file provides a Grammar for the type Gaudi::Accumulators::Axis It allows to use that type from p...