+### slice
+
+`slice` allows you to create an array (`[]interface{}`) of all arguments that you pass to this function.
+
+One use case is the concatenation of elements in combination with `delimit`:
+
+```html
+{{ delimit (slice "foo" "bar" "buzz") ", " }}
+<!-- returns the string "foo, bar, buzz" -->
+```
+
+
### echoParam
Prints a parameter if it is set.
return dict, nil
}
+// slice returns a slice of all passed arguments
+func slice(args ...interface{}) []interface{} {
+ return args
+}
+
func compareGetFloat(a interface{}, b interface{}) (float64, float64) {
var left, right float64
var leftStr, rightStr *string
"seq": helpers.Seq,
"shuffle": shuffle,
"singularize": singularize,
+ "slice": slice,
"slicestr": slicestr,
"sort": sortSeq,
"split": split,