me.vedang.clj-fdb.tuple.tuple

from

(from & args)

Creates a new Tuple from a variable number of elements.

Note: an empty number of arguments is a valid input to this function, it creates an empty Tuple.

from-bytes

(from-bytes ba)

Construct a new Tuple with elements decoded from a supplied byte array.

get-items

(get-items t)

Gets the unserialized contents of this Tuple.

pack

(pack t)

Get an encoded representation of this Tuple.

range

(range t)

Returns a range representing all keys that encode Tuples strictly starting with this Tuple.

For example: (range (from “a” “b”)) includes all tuples (“a”, “b”, …)

Returns: the range of keys containing all Tuples that have this Tuple as a prefix.