| am_uint64 | R Documentation |
Creates an am_uint64 object for storing unsigned 64-bit integers in Automerge
documents. This preserves type fidelity when syncing with other language
bindings (JavaScript BigInt, Python int, etc.).
am_uint64(value = 0)
value |
Numeric value (default 0). Values beyond 2^53 may lose precision. |
An am_uint64 object
doc <- am_create()
am_put(doc, AM_ROOT, "id", am_uint64(12345))
am_close(doc)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.