Replies: 2 comments
-
No, this is currently not possible. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Can this be done by defining my own serializer as described in https://json.nlohmann.me/features/arbitrary_types/#can-i-write-my-own-serializer-advanced-use ? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there a way to customize how built-in types like
uint64_t
are deserialized by the library? I have a JSON schema where some numeric values are serialized as a string with hex-encoded value, e.g."0x8000000000000001"
. I want to makej.get<uint64_t>()
to work for these too.Beta Was this translation helpful? Give feedback.
All reactions