hugo/tpl/collections
Bjørn Erik Pedersen a03c631c42
Rework template handling for function and map lookups
This is a big commit, but it deletes lots of code and simplifies a lot.

* Resolving the template funcs at execution time means we don't have to create template clones per site
* Having a custom map resolver means that we can remove the AST lower case transformation for the special lower case Params map

Not only is the above easier to reason about, it's also faster, especially if you have more than one language, as in the benchmark below:

```
name                          old time/op    new time/op    delta
SiteNew/Deep_content_tree-16    53.7ms ± 0%    48.1ms ± 2%  -10.38%  (p=0.029 n=4+4)

name                          old alloc/op   new alloc/op   delta
SiteNew/Deep_content_tree-16    41.0MB ± 0%    36.8MB ± 0%  -10.26%  (p=0.029 n=4+4)

name                          old allocs/op  new allocs/op  delta
SiteNew/Deep_content_tree-16      481k ± 0%      410k ± 0%  -14.66%  (p=0.029 n=4+4)
```

This should be even better if you also have lots of templates.

Closes #6594
2019-12-12 10:04:35 +01:00
..
append.go common/maps: Improve append in Scratch 2018-10-08 12:30:50 +02:00
append_test.go tests: Convert from testify to quicktest 2019-08-12 13:26:32 +02:00
apply.go Rework template handling for function and map lookups 2019-12-12 10:04:35 +01:00
apply_test.go Rework template handling for function and map lookups 2019-12-12 10:04:35 +01:00
collections.go Create lightweight forks of text/template and html/template 2019-12-12 09:59:34 +01:00
collections_test.go Create lightweight forks of text/template and html/template 2019-12-12 09:59:34 +01:00
complement.go tpl/collections: Add collections.SymDiff 2018-11-06 16:51:49 +01:00
complement_test.go tests: Convert from testify to quicktest 2019-08-12 13:26:32 +02:00
index.go Fix Params case handling in the index, sort and where func 2019-11-22 18:41:50 +01:00
index_test.go Fix Params case handling in the index, sort and where func 2019-11-22 18:41:50 +01:00
init.go tpl/collections: Add Merge function 2019-07-15 20:47:35 +02:00
init_test.go tests: Convert from testify to quicktest 2019-08-12 13:26:32 +02:00
merge.go tpl/collections: Add Merge function 2019-07-15 20:47:35 +02:00
merge_test.go tests: Convert from testify to quicktest 2019-08-12 13:26:32 +02:00
reflect_helpers.go all: Apply staticcheck recommendations 2019-03-24 16:14:51 +01:00
sort.go Fix Params case handling in the index, sort and where func 2019-11-22 18:41:50 +01:00
sort_test.go Fix Params case handling in the index, sort and where func 2019-11-22 18:41:50 +01:00
symdiff.go tpl/collections: Add collections.SymDiff 2018-11-06 16:51:49 +01:00
symdiff_test.go tests: Convert from testify to quicktest 2019-08-12 13:26:32 +02:00
where.go Fix Params case handling in the index, sort and where func 2019-11-22 18:41:50 +01:00
where_test.go Fix Params case handling in the index, sort and where func 2019-11-22 18:41:50 +01:00