public static operator!=(left as MatchResult, right as MatchResult) as Boolean:
Value inequality with another match result.
| Parameter | Description |
|---|---|
left | First result. |
right | Second result. |
True when both results differ.
import klyn.regex
assert MatchResult("a") != MatchResult("b")