(y otherString)
| 220 | type otherString string |
| 221 | |
| 222 | func (x otherString) Equal(y otherString) bool { |
| 223 | return strings.EqualFold(string(x), string(y)) |
| 224 | } |
| 225 | |
| 226 | // If the Equal method defined on a type is not suitable, the type can be |
| 227 | // dynamically transformed to be stripped of the Equal method (or any method |
nothing calls this directly
no outgoing calls
no test coverage detected