Lines Matching refs:json_ref
3461 // json_ref helpers //
3465 class json_ref;
3471 struct is_json_ref<json_ref<T>> : std::true_type {};
14671 // #include <nlohmann/detail/json_ref.hpp>
14695 class json_ref
14700 json_ref(value_type&& value)
14704 json_ref(const value_type& value)
14708 json_ref(std::initializer_list<json_ref> init)
14715 json_ref(Args && ... args)
14720 json_ref(json_ref&&) noexcept = default;
14721 json_ref(const json_ref&) = delete;
14722 json_ref& operator=(const json_ref&) = delete;
14723 json_ref& operator=(json_ref&&) = delete;
14724 ~json_ref() = default;
19348 using initializer_list_t = std::initializer_list<detail::json_ref<basic_json>>;
20077 [](const detail::json_ref<basic_json>& element_ref)
21049 detail::negation<std::is_same<ValueType, detail::json_ref<basic_json>>>,