(str unicodeString)
| 202 | } |
| 203 | |
| 204 | func (b *unicodeStringBuilder) writeUnicodeString(str unicodeString) { |
| 205 | b.buf = append(b.buf, str[1:]...) |
| 206 | b.unicode = true |
| 207 | } |
| 208 | |
| 209 | func (b *StringBuilder) ascii() bool { |
| 210 | return len(b.unicodeBuilder.buf) == 0 |
no outgoing calls
no test coverage detected