Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/python-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,8 @@ order. Often, given a particular order, it is convenient to iterate over each no
using the {meth}`Tree.nodes` method. However, for high performance algorithms, it
may be more convenient to access the node indices for a particular order as
an array, and use this, for example, to index into one of the node arrays (see
{ref}`sec_topological_analysis_traversal`).
{ref}`sec_topological_analysis_traversal`). Note that the most efficient of these
methods is {meth}`Tree.preorder`.

```{eval-rst}
Iterator access
Expand Down
Loading