()
| 157 | } |
| 158 | |
| 159 | func (i *importedString) Length() int { |
| 160 | i.ensureScanned() |
| 161 | if i.u != nil { |
| 162 | return i.u.Length() |
| 163 | } |
| 164 | return asciiString(i.s).Length() |
| 165 | } |
| 166 | |
| 167 | func (i *importedString) Concat(v String) String { |
| 168 | if !i.scanned { |
nothing calls this directly
no test coverage detected