cfunction
src/core/table.c on line 301, column 1
(table/new capacity)
Creates a new empty table with pre-allocated memory for `capacity`
entries. This means that if one knows the number of entries going
into a table on creation, extra memory allocation can be avoided.
Returns the new table.
(table/new 2)
# => @{}