IMPORTANT: To view this page as Markdown, append `.md` to the URL (e.g. /get-started.md). For the complete documentation index, see llms.txt.
Skip to main content
For the complete documentation index, see llms.txt. Markdown versions of all pages are available by appending .md to any URL (e.g. /get-started.md).

Python function

leaves

leaves()

max.experimental.tree_utils.leaves(tree, *, leaf=None, shared=False)

source

Returns tree’s leaves, left to right, dropping the structure.

Parameters:

  • tree (Any) – The value to read.
  • leaf (type | tuple[type, ...] | Callable[[Any], bool] | None) – Where the walk stops.
  • shared (bool) – Whether an aliased value is one leaf or one per path.

Return type:

list[Any]