RSV
NAME
RSV - encoder and decoder of Rows of String Values
SYNOPSYS
use RSV;
my blob8 $rsv = to-rsv(@array);
my @array2 = from-rsv($rsv);
DESCRIPTION
RSV is a binary format for storing simple string values. As the name suggest, it support only Rows of String Values. It is not a generic serialization framework, but more of a replacement of CSV or TSV.
The RSV
module provide two functions: to-rsv
and from-rsv
.
to-rsv
function is a RSV encoder that produces a blob8 value from the given input. The input must be an array, in which each element must be an array of string or null value. Or in a more concise type-annotion: Array[Array[String|Nil]]
REFERENCES
RSV: https://github.com/Stenway/RSV-Specification