MCPcopy Create free account
hub / github.com/boostorg/json / string_impl

Method string_impl

include/boost/json/detail/string_impl.hpp:139–153  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

137
138 template<class InputIt>
139 string_impl(
140 InputIt first,
141 InputIt last,
142 storage_ptr const& sp,
143 std::random_access_iterator_tag)
144 : string_impl(last - first, sp)
145 {
146 char* out = data();
147#if defined(_MSC_VER) && _MSC_VER <= 1900
148 while( first != last )
149 *out++ = *first++;
150#else
151 std::copy(first, last, out);
152#endif
153 }
154
155 template<class InputIt>
156 string_impl(

Callers

nothing calls this directly

Calls 2

dataClass · 0.85
sizeFunction · 0.85

Tested by

no test coverage detected