The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
R implementation of TSON specification.
Type int64 is not yet implemented.
library(rtson)
list = list(integer=42L,
double=42,
bool=TRUE,
uint8=tson.uint8.vec(c(42,0)),
uint16=tson.uint16.vec(c(42,0)),
uint32=tson.uint32.vec(c(42,0)),
int8=tson.int8.vec(c(42,0)),
int16=tson.int16.vec(c(42,0)),
int32=as.integer(c(42,0)),
float32=tson.float32.vec(c(0.0, 42.0)),
float64=c(42.0,42.0),
map=list(x=42, y=42, label="42"),
list=list("42",42)
)
bytes = toTSON(list)
print(as.integer(bytes))
object = fromTSON(bytes)
print(object)
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.