======= MODIFIERS (modify the view, not the data) =======
| 103 | |
| 104 | // ======= MODIFIERS (modify the view, not the data) ======= |
| 105 | void remove_prefix(fl::size n) FL_NOEXCEPT { |
| 106 | if (n > mSize) n = mSize; |
| 107 | mData += n; |
| 108 | mSize -= n; |
| 109 | } |
| 110 | |
| 111 | void remove_suffix(fl::size n) FL_NOEXCEPT { |
| 112 | if (n > mSize) n = mSize; |
no outgoing calls
no test coverage detected