ATLAS Offline Software
Loading...
Searching...
No Matches
Trigger/TrigT1/L1Topo/L1TopoCommon/Root/StringUtils.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3*/
4
6
7using namespace std;
8
9string
10TCS::join(const vector<string>& v, const char c) {
11 string joined{""};
12 for(const string & s : v) {
13 if(!joined.empty()) joined += c;
14 joined += s;
15 }
16 return joined;
17}
std::string join(const std::vector< std::string > &v, const char c=',')
STL namespace.