klyn.regex.MatchResult.operator!=
method
public static operator!=(left as MatchResult, right as MatchResult) as Boolean:
DescriptionValue inequality with another match result.
import klyn.regex
assert MatchResult("a") != MatchResult("b")
ReturnsTrue when both results differ. ``` import klyn.regex assert MatchResult("a") != MatchResult("b") ```