klyn.regex.MatchResult.operator==
method
public static operator==(left as String, right as MatchResult) as Boolean:
DescriptionValue equality with a string.
import klyn.regex
assert "abc" == MatchResult("abc")
ReturnsTrue when the matched text equals the given string. ``` import klyn.regex assert "abc" == MatchResult("abc") ```