scenario_simulator_v2 C++ API
concatenate.hpp
Go to the documentation of this file.
1 // Copyright 2015 TIER IV, Inc. All rights reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #ifndef SCENARIO_SIMULATOR_EXCEPTION__CONCATENATE_HPP_
16 #define SCENARIO_SIMULATOR_EXCEPTION__CONCATENATE_HPP_
17 
19 #include <sstream>
20 #include <string>
21 #include <utility>
22 
23 namespace common
24 {
25 inline namespace scenario_simulator_exception
26 {
27 inline auto concatenate = [](auto &&... xs) {
28  auto write = [](auto && os, auto && x) {
29  os.get() << std::forward<decltype(x)>(x);
30  return std::forward<decltype(os)>(os);
31  };
32  std::stringstream result;
33  fold_left(write, std::ref(result), std::forward<decltype(xs)>(xs)...);
34  return result.str();
35 };
36 } // namespace scenario_simulator_exception
37 } // namespace common
38 
39 #endif // OPENSCENARIO_INTERPRETER__CONCATENATE_HPP_
constexpr decltype(auto) fold_left(F &&, T &&x)
Definition: fold.hpp:26
auto concatenate
Definition: concatenate.hpp:27
Definition: concatenate.hpp:24
Definition: junit5.hpp:25