MCPcopy Create free account
hub / github.com/boostorg/parser / transcode_to_32

Function transcode_to_32

include/boost/parser/detail/text/transcode_algorithm.hpp:189–202  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

187
188 template<bool UseN, typename Iter, typename Sentinel, typename OutIter>
189 transcode_result<Iter, OutIter> transcode_to_32(
190 tag_t<format::utf8>,
191 Iter first,
192 Sentinel last,
193 std::ptrdiff_t n,
194 OutIter out)
195 {
196 return detail::transcode_utf_8_to_32<UseN>(
197 first,
198 last,
199 n,
200 out,
201 typename std::iterator_traits<Iter>::iterator_category{});
202 }
203
204 template<bool UseN, typename Iter, typename Sentinel, typename OutIter>
205 transcode_result<Iter, OutIter> transcode_to_8(

Callers

nothing calls this directly

Calls 2

surrogateFunction · 0.85
low_surrogateFunction · 0.85

Tested by

no test coverage detected