Get the out-degree of this node (i.e., the number of edges that are incident to it from this node). Returns: int: The out-degree of this node.
(&self)
| 235 | /// Returns: |
| 236 | /// int: The out-degree of this node. |
| 237 | pub fn out_degree(&self) -> usize { |
| 238 | self.node.out_degree() |
| 239 | } |
| 240 | |
| 241 | /// Returns the history of a node, including node additions and changes made to node. |
| 242 | /// |