type text/template.FuncMap

13 uses

	text/template (current package)
		funcs.go#L33: type FuncMap map[string]any
		funcs.go#L39: func builtins() FuncMap {
		funcs.go#L40: 	return FuncMap{
		funcs.go#L80: func createValueFuncs(funcMap FuncMap) map[string]reflect.Value {
		funcs.go#L87: func addValueFuncs(out map[string]reflect.Value, in FuncMap) {
		funcs.go#L105: func addFuncs(out, in FuncMap) {
		template.go#L23: 	parseFuncs FuncMap
		template.go#L75: 		c.parseFuncs = make(FuncMap)
		template.go#L174: func (t *Template) Funcs(funcMap FuncMap) *Template {

	gotest.tools/v3/assert/cmp
		result.go#L86: 	tmpl := template.New("failure").Funcs(template.FuncMap{

	html/template
		escape.go#L65: var funcMap = template.FuncMap{
		template.go#L331: type FuncMap = template.FuncMap
		template.go#L339: 	t.text.Funcs(template.FuncMap(funcMap))