match method
Implementation
RadBoolean match(String other) {
if (value == other) {
return RadBoolean(true);
}
return RadBoolean(false);
}
RadBoolean match(String other) {
if (value == other) {
return RadBoolean(true);
}
return RadBoolean(false);
}