Files
hugo/docs/content/en/functions/collections/KeyVals.md
T
Bjørn Erik Pedersen 30a20122b7 Merge commit '8f3c066d23f431fb2c53d97ea489e4c28b42bd82'
# Conflicts:
#	docs/data/docs.yaml
2026-02-14 12:14:33 +01:00

851 B

title, description, categories, keywords, params, aliases
title description categories keywords params aliases
collections.KeyVals Returns a KeyVals struct by pairing a given key and values.
functions_and_methods
aliases returnType signatures
keyVals
types.KeyValues
collections.KeyVals KEY VALUE...
/functions/keyvals

The primary application for this function is the definition of the namedSlices value in the options map passed to the Related method on the Pages object.

See related content.

{{ $kv := keyVals "foo" "a" "b" "c" }}

The resulting data structure is:

{
  "Key": "foo",
  "Values": [
    "a",
    "b",
    "c"
  ]
}

To extract the key and values:

{{ $kv.Key }} → foo
{{ $kv.Values }} → [a b c]