Files
opentf/website/docs/configuration/functions/compact.html.md
Martin Atkins e7d71995f6 website: Document the remaining "collection" functions
This also renames some of the existing function pages whose source
filenames were not matching the usual naming scheme (.html.md).
2018-10-16 18:47:33 -07:00

388 B

layout, page_title, sidebar_current, description
layout page_title sidebar_current description
functions compact function docs-funcs-collection-compact The compact function removes empty string elements from a list.

compact Function

compact takes a list of strings and returns a new list with any empty string elements removed.

Examples

> compact(["a", "", "b", "c"])
[
  "a",
  "b",
  "c",
]