(other unicodeString)
| 402 | } |
| 403 | |
| 404 | func (s unicodeString) equals(other unicodeString) bool { |
| 405 | if len(s) != len(other) { |
| 406 | return false |
| 407 | } |
| 408 | for i, r := range s { |
| 409 | if r != other[i] { |
| 410 | return false |
| 411 | } |
| 412 | } |
| 413 | return true |
| 414 | } |
| 415 | |
| 416 | func (s unicodeString) SameAs(other Value) bool { |
| 417 | return s.StrictEquals(other) |
no outgoing calls
no test coverage detected