Nothing
Code
am_uint64(2^54)
Condition
Warning in `am_uint64()`:
Value exceeds 2^53; precision may be lost
Output
<Automerge uint64: 18014398509481984 >
Code
print(am_uint64(12345))
Output
<Automerge uint64: 12345 >
Code
print(am_uint64(0))
Output
<Automerge uint64: 0 >
Code
print(am_uint64(2^50))
Output
<Automerge uint64: 1125899906842624 >
Code
am_put(doc, AM_ROOT, "bad", bad_uint)
Condition
Error in `am_put()`:
! am_uint64 must be a scalar numeric
Code
am_put(doc, AM_ROOT, "bad", bad_uint2)
Condition
Error in `am_put()`:
! am_uint64 must be a scalar numeric
Code
am_get(doc, AM_ROOT, "big")
Condition
Warning in `am_get()`:
uint64 value exceeds 2^53; precision may be lost
Output
<Automerge uint64: 18014398509481984 >
Code
am_values(doc, AM_ROOT)
Condition
Warning in `am_values()`:
uint64 value exceeds 2^53; precision may be lost
Output
[[1]]
<Automerge uint64: 18014398509481984 >
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.