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"

Property definitions

template $ Template :: add_all
	# 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
lib/template/template.nit:125,2--131,72