Merge pull request #8033 from FedericoCeratto/patch-9

Add hint on JSON serialization
This commit is contained in:
Andreas Rumpf
2018-06-14 12:03:41 +02:00
committed by GitHub

View File

@@ -270,6 +270,8 @@ proc store*[T](s: Stream, data: T) =
proc `$$`*[T](x: T): string =
## returns a string representation of `x`.
##
## Note: to serialize `x` to JSON use $(%x) from the ``json`` module
var stored = initIntSet()
var d: T
shallowCopy(d, x)