RSV

RSV encoder and decoder

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

RSV v0.0.1

RSV encoder and decoder

Authors

  • Kang-min Liu

License

The MIT License

Dependencies

Test Dependencies

Provides

  • RSV

The Camelia image is copyright 2009 by Larry Wall. "Raku" is trademark of the Yet Another Society. All rights reserved.