seq->object
converts sequences to an object
Usage:
(seq->object seq+)Concatenate a set of sequences into an object (hash-map). Unlike the standard concat function, which is lazily computed, the result of this function will be materialized immediately.
An Example
(define x [:name "ale" :age 0.3])
(define y '(:weight "light"))
(seq->object x y)