is <JsonElement> appropriate for comparing arbitra...
# serialization
a
is JsonElement appropriate for comparing arbitrary JSON strings for equality? It seems to work fine but I haven't done any kind of exhaustive testing, wondering if anyone else has used it for that
b
I am using
jsonElementA.equals(jsonElementB)
for testing highly nested JSON of up to 100 lines. It's working exactly for me.
a
awesome thanks for the feedback
👍 1