Return a string representation of the node. This method provides a human-readable representation of the node, which is useful for debugging and logging purposes. Returns: str: A string representation of the node.
(&self)
| 438 | /// Returns: |
| 439 | /// str: A string representation of the node. |
| 440 | fn __repr__(&self) -> String { |
| 441 | self.repr() |
| 442 | } |
| 443 | } |
| 444 | |
| 445 | /// A list of nodes that can be iterated over. |