operator % method

Cond<String> operator %(
  1. String other
)

This is actually 'like' operator

Implementation

Cond<String> operator %(String other) {
  return like(other);
}