diff --git a/Cargo.toml b/Cargo.toml index 1d2cdbf..2270f23 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "orx-tree" -version = "1.7.0" +version = "1.7.1" edition = "2024" authors = ["orxfun "] -description = "A beautiful tree 🌳 with convenient, efficient, parallelizable growth, mutation and features." +description = "A beautiful tree 🌳 with convenient, efficient, parallelizable growth, mutation and traversal features." license = "MIT OR Apache-2.0" repository = "https://github.com/orxfun/orx-tree/" keywords = ["tree", "data-structures", "traversal", "traverse", "binarytree"] diff --git a/README.md b/README.md index c9c189d..3eca4d6 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![orx-tree crate](https://img.shields.io/crates/d/orx-tree.svg)](https://crates.io/crates/orx-tree) [![orx-tree documentation](https://docs.rs/orx-tree/badge.svg)](https://docs.rs/orx-tree) -A beautiful tree 🌳 with convenient, efficient, parallelizable growth, mutation and features. +A beautiful tree 🌳 with convenient, efficient, parallelizable growth, mutation and traversal features. ## Tree Variants @@ -98,7 +98,7 @@ The tree naturally implements `IntoIterator`, [`Collection`](https://docs.rs/orx * `Parallelized over Tree using orx-parallel : 6.02s` * `Parallelized over Tree using rayon's par-bridge : 81.10s` -Remaining walks and traversals can be parallelized by simply by adding **_par** suffix to names of their sequential counterparts: +Remaining walks and traversals can be parallelized simply by adding **_par** suffix to names of their sequential counterparts: [`children_par`](https://docs.rs/orx-tree/latest/orx_tree/trait.NodeRef.html#method.children_par) | [`ancestors_par`](https://docs.rs/orx-tree/latest/orx_tree/trait.NodeRef.html#method.ancestors_par) |