template :: Template :: add_all
See add.
add
var t = new Template t.add_all(["1", "2"]) assert t.write_to_string == "12"
# Append a bunch of elements at the end of the template. # See `add`. # # var t = new Template # t.add_all(["1", "2"]) # assert t.write_to_string == "12" fun add_all(elements: Collection[Writable]) do content.add_all elements