Home
last modified time | relevance | path

Searched defs:iterator_input_adapter_factory (Results 1 – 2 of 2) sorted by relevance

/third_party/json/include/nlohmann/detail/input/
Dinput_adapters.hpp329 struct iterator_input_adapter_factory struct
331 using iterator_type = IteratorType;
332 using char_type = typename std::iterator_traits<iterator_type>::value_type;
333 using adapter_type = iterator_input_adapter<iterator_type>;
335 static adapter_type create(IteratorType first, IteratorType last) in create()
352 struct iterator_input_adapter_factory<IteratorType, enable_if_t<is_iterator_of_multibyte<IteratorTy… struct
354 using iterator_type = IteratorType;
355 using char_type = typename std::iterator_traits<iterator_type>::value_type;
356 using base_adapter_type = iterator_input_adapter<iterator_type>;
357 using adapter_type = wide_string_input_adapter<base_adapter_type, char_type>;
[all …]
/third_party/json/single_include/nlohmann/
Djson.hpp5050 struct iterator_input_adapter_factory struct
5052 using iterator_type = IteratorType;
5053 using char_type = typename std::iterator_traits<iterator_type>::value_type;
5054 using adapter_type = iterator_input_adapter<iterator_type>;
5056 static adapter_type create(IteratorType first, IteratorType last) in create()
5073 struct iterator_input_adapter_factory<IteratorType, enable_if_t<is_iterator_of_multibyte<IteratorTy… struct
5075 using iterator_type = IteratorType;
5076 using char_type = typename std::iterator_traits<iterator_type>::value_type;
5077 using base_adapter_type = iterator_input_adapter<iterator_type>;
5078 using adapter_type = wide_string_input_adapter<base_adapter_type, char_type>;
[all …]