hugo/docs/content/en/functions/seq.md
2023-05-22 16:47:07 +02:00

524 B

title description categories menu keywords signature relatedfuncs
seq Returns a slice of integers.
functions
docs
parent
functions
seq LAST
seq FIRST LAST
seq FIRST INCREMENT LAST
{{ seq 2 }} → [1 2]
{{ seq 0 2 }} → [0 1 2]
{{ seq -2 2 }} → [-2 -1 0 1 2]
{{ seq -2 2 2 }} → [-2 0 2]

Iterate over a sequence of integers:

{{ $product := 1 }}
{{ range seq 4 }}
  {{ $product = mul $product . }}
{{ end }}
{{ $product }} → 24