hugo/docs/content/en/functions/collections/Seq.md
2023-10-20 09:43:56 +02:00

805 B

title linkTitle description categories keywords menu function relatedFunctions aliases
collections.Seq seq Returns a slice of integers.
functions
docs
parent
functions
aliases returnType signatures
seq
[]int
collections.Seq LAST
collections.Seq FIRST LAST
collections.Seq FIRST INCREMENT LAST
collections.Apply
collections.Delimit
collections.In
collections.Reverse
collections.Seq
collections.Slice
/functions/seq
{{ 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