@return the number of out edges of the given node.
(N node)
| 94 | * @return the number of out edges of the given node. |
| 95 | */ |
| 96 | default int getOutDegreeOf(N node) { |
| 97 | return getOutEdgesOf(node).size(); |
| 98 | } |
| 99 |
no outgoing calls
no test coverage detected