operator <= method

bool operator <=(
  1. Path other
)

Implementation

bool operator <=(Path other) {
  if (equals(other)) {
    return true;
  }
  return this < other;
}