Whether this is a variable-length path (min != max or > 1 hop).
(&self)
| 105 | impl EdgeBinding { |
| 106 | /// Whether this is a variable-length path (min != max or > 1 hop). |
| 107 | pub fn is_variable_length(&self) -> bool { |
| 108 | self.min_hops != self.max_hops || self.min_hops > 1 |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | /// Edge traversal direction. |
no outgoing calls
no test coverage detected