klyn.regex.MatchResult.operator==
method
public static operator==(left as MatchResult, right as MatchResult) as Boolean:
DescriptionValue equality with another match result.
import klyn.regex
assert MatchResult("42") == MatchResult("42")
ReturnsTrue when both results store the same matched text. ``` import klyn.regex assert MatchResult("42") == MatchResult("42") ```