From 3f0f186b91e89f8958821d25820a7a73d29fb4be Mon Sep 17 00:00:00 2001 From: bep Date: Tue, 20 Jan 2015 13:31:02 +0100 Subject: [PATCH] Add inline doc for Apply --- tpl/template.go | 1 + 1 file changed, 1 insertion(+) diff --git a/tpl/template.go b/tpl/template.go index 84a3fd146..97b2e5bbb 100644 --- a/tpl/template.go +++ b/tpl/template.go @@ -544,6 +544,7 @@ func Where(seq, key interface{}, args ...interface{}) (r interface{}, err error) } } +// Apply, given a map, array, or slice, returns a new slice with the function fname applied over it. func Apply(seq interface{}, fname string, args ...interface{}) (interface{}, error) { if seq == nil { return make([]interface{}, 0), nil