All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Classes | Functions
details Namespace Reference

Classes

struct  FileListExpansionBaseError
 
struct  FileNotFoundError
 
struct  FileListErrorWrapper
 
class  PointerToData_t
 

Functions

template<typename T >
std::vector< T > & appendToVector (std::vector< T > &dest, std::vector< T > const &src)
 
template<typename StartIter , typename EndIter >
StartIter skipSpaces (StartIter begin, EndIter end)
 

Function Documentation

template<typename T >
std::vector< T > & details::appendToVector ( std::vector< T > &  dest,
std::vector< T > const &  src 
)

Definition at line 37 of file icarusalg/icarusalg/gallery/helpers/C++/expandInputFiles.h.

38  { dest.insert(dest.end(), src.begin(), src.end()); return dest; }
template<typename StartIter , typename EndIter >
StartIter details::skipSpaces ( StartIter  begin,
EndIter  end 
)

Definition at line 41 of file icarusalg/icarusalg/gallery/helpers/C++/expandInputFiles.h.

41  {
42  for (auto i = begin; i != end; ++i) if (!std::isspace(*i)) return i;
43  return end;
44  } // skipSpaces()
auto end(FixedBins< T, C > const &) noexcept
Definition: FixedBins.h:585
auto begin(FixedBins< T, C > const &) noexcept
Definition: FixedBins.h:573