cfunction
src/core/corelib.c on line 359 , column 1
(buffer & xs )
Creates a buffer by concatenating the elements of `xs` together. If
an element is not a byte sequence , it is converted to bytes via
`describe` . Returns the new buffer.
(buffer ;(interpose " " [:ant 'bee "cat" ``dog`` @`ewe` ]))
# => @"ant bee cat dog ewe"
(buffer "dude, " "where's " "my " "car?" ) # => @"dude, where's my car?"