Code

data: Added basic support for arrays.
authorSebastian Harl <sh@tokkee.org>
Mon, 20 Oct 2014 06:03:13 +0000 (08:03 +0200)
committerSebastian Harl <sh@tokkee.org>
Mon, 20 Oct 2014 06:03:13 +0000 (08:03 +0200)
commitc5e7e465a3ec8eccfd881411f08244d8c5265660
treef8aad2821b86d1df256a463c620607ed83e26ae4
parenta4208bf034648dcc177be3de1b8ebfc89ac37725
data: Added basic support for arrays.

An array may contain elements of one type and it's stored in compact raw form
(as in: not an array of union values but an array of the actual values).
'copy', 'free', and 'concat' operations are currently supported but limited to
integer, decimal, or string element types. ENOTSUP is returned for any other
operations.
src/core/data.c
src/include/core/data.h
t/unit/core/data_test.c