Lines Matching refs:to_json
38 #include <nlohmann/detail/conversions/to_json.hpp>
826 JSONSerializer<U>::to_json(std::declval<basic_json_t&>(),
829 JSONSerializer<U>::to_json(*this, std::forward<CompatibleType>(val));
853 JSONSerializer<other_boolean_t>::to_json(*this, val.template get<other_boolean_t>());
856 JSONSerializer<other_number_float_t>::to_json(*this, val.template get<other_number_float_t>());
859 JSONSerializer<other_number_integer_t>::to_json(*this, val.template get<other_number_integer_t>());
862 JSONSerializer<other_number_unsigned_t>::to_json(*this, val.template get<other_number_unsigned_t>());
865 JSONSerializer<other_string_t>::to_json(*this, val.template get_ref<const other_string_t&>());
868 JSONSerializer<other_object_t>::to_json(*this, val.template get_ref<const other_object_t&>());
871 JSONSerializer<other_array_t>::to_json(*this, val.template get_ref<const other_array_t&>());
874 JSONSerializer<other_binary_t>::to_json(*this, val.template get_ref<const other_binary_t&>());