hugo/docs/content/en/functions/collections/Seq.md
2023-12-04 15:24:01 +01:00

951 B

title description categories keywords action related aliases
collections.Seq Returns a slice of integers.
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

The example above is contrived. To calculate the product of 2 or more numbers, use the math.Product function:

{{ math.Product (seq 4) }} → 24