Delete deletes the characters and attributes of s in the byte range [start, end).
(start, end int)
| 400 | // Delete deletes the characters and attributes of s in the byte range |
| 401 | // [start, end). |
| 402 | func (s *AttributedString) Delete(start, end int) { |
| 403 | C.uiAttributedStringDelete(s.s, C.size_t(start), C.size_t(end)) |
| 404 | } |
| 405 | |
| 406 | // SetAttribute sets a in the byte range [start, end) of s. Any existing |
| 407 | // attributes in that byte range of the same type are removed. |
nothing calls this directly
no outgoing calls
no test coverage detected