mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-16 11:01:09 -05:00
This also renames some of the existing function pages whose source filenames were not matching the usual naming scheme (.html.md).
652 B
652 B
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| functions | chunklist function | docs-funcs-collection-chunklist | The chunklist function splits a single list into fixed-size chunks, returning a list of lists. |
chunklist Function
chunklist splits a single list into fixed-size chunks, returning a list
of lists.
chunklist(list, chunk_size)
Examples
> chunklist(["a", "b", "c", "d", "e"], 2)
[
[
"a",
"b",
],
[
"c",
"d",
],
[
"e",
],
]
> chunklist(["a", "b", "c", "d", "e"], 1)
[
[
"a",
],
[
"b",
],
[
"c",
],
[
"d",
],
[
"e",
],
]