function
boot.janet on line 975, column 1
(mapcat f ind)
Map a function over every element in an array or tuple and use
`array/concat` to concatenate the results.
# Convert an array of k/v pairs into a table
(def kvp @[[:foo 1] [:bar 2]])
(table ;(mapcat identity kvp)) # => @{:foo 1 :bar 2}