mirror of
https://github.com/gohugoio/hugoDocs.git
synced 2025-09-18 07:34:53 -04:00
tpl: Add union template func
This commit is contained in:
parent
0c4eb1c0d7
commit
10fdd5565b
@ -214,6 +214,23 @@ e.g.
|
|||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
### union
|
||||||
|
Given two arrays (or slices) A and B, this function will return a new array that contains the elements or objects that belong to either A or to B or to both. The elements supported are strings, integers and floats (only float64).
|
||||||
|
|
||||||
|
```
|
||||||
|
{{ union (slice 1 2 3) (slice 3 4 5) }}
|
||||||
|
<!-- returns [1 2 3 4 5] -->
|
||||||
|
|
||||||
|
{{ union (slice 1 2 3) nil }}
|
||||||
|
<!-- returns [1 2 3] -->
|
||||||
|
|
||||||
|
{{ union nil (slice 1 2 3) }}
|
||||||
|
<!-- returns [1 2 3] -->
|
||||||
|
|
||||||
|
{{ union nil nil }}
|
||||||
|
<!-- returns an error because both arrays/slices have to be of the same type -->
|
||||||
|
```
|
||||||
|
|
||||||
### isset
|
### isset
|
||||||
Returns true if the parameter is set.
|
Returns true if the parameter is set.
|
||||||
Takes either a slice, array or channel and an index or a map and a key as input.
|
Takes either a slice, array or channel and an index or a map and a key as input.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user