Skip to content

Methods

DadiBit edited this page Jul 15, 2022 · 4 revisions

The kuli global variable has some methods that allow to read and append data from/to a database.

Apart from kuli.new, all methods return the interface passed as argument. Because kuli_t implements the append method (if created with kuli.new), you can nicely chain to it append calls:

kuli
.append(k, &a)
.append(k, &b)
.append(k, &c);

full implementation in tests/write.c

Clone this wiki locally