Lines Matching defs:value
540 !(std::is_pod<U>::value && std::is_class<U>::value), int >::type = 0 >
550 std::is_pod<U>::value && std::is_class<U>::value, int >::type = 0 >
553 std::uint64_t value = 0;
568 nlohmann::from_json(j, value);
569 auto* bytes = static_cast<char*>(static_cast<void*>(&value));
570 std::memcpy(&t, bytes, sizeof(value));
576 !(std::is_pod<U>::value && std::is_class<U>::value), int >::type = 0 >
585 std::is_pod<U>::value && std::is_class<U>::value, int >::type = 0 >
589 std::uint64_t value = 0;
590 std::memcpy(&value, bytes, sizeof(value));
591 nlohmann::to_json(j, value);
794 static_assert(!is_constructible_patched<json, incomplete>::value, "");
831 static_assert(!std::is_convertible<json, non_convertible_type>::value, "");