15#include "RConfigure.h"
17#if defined(_MSVC_LANG)
18# define R__MSVC_LANG _MSVC_LANG
20# define R__MSVC_LANG 0
23#if defined(R__HAS_STD_STRING_VIEW) || R__MSVC_LANG >= 201703L || __cplusplus >= 201703L
29# if defined(R__HAS_STD_EXPERIMENTAL_STRING_VIEW)
30# include <experimental/string_view>
37 template<
class _CharT,
class _Traits = std::
char_traits<_CharT> >
53#ifndef R__HAS_STOD_STRING_VIEW
54 inline double stod(std::string_view str,
size_t *pos)
56 return std::stod(std::string(str.data(), str.size()),pos);
64#if !(defined(R__HAS_OP_EQUAL_PLUS_STRING_VIEW) || R__MSVC_LANG >= 201703L || __cplusplus >= 201703L)
69inline namespace __ROOT {
71inline std::string &
operator+=(std::string &left, std::string_view right)
73 return left.append(right.data(), right.size());
90 operator std::string_view()
const {
return std::string_view(
fData,
fLength); }
std::string & operator+=(std::string &left, const TString &right)
TStringView(const char *cstr, size_t len)
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...