(@NotNull String s)
| 36 | } |
| 37 | |
| 38 | @NotNull @Contract("-> this") |
| 39 | public ManagedString append(@NotNull String s) { |
| 40 | assert s != null : "Can't append with s == null"; |
| 41 | Stats.onNativeCall(); |
| 42 | _nAppend(_ptr, s); |
| 43 | return this; |
| 44 | } |
| 45 | |
| 46 | @NotNull @Contract("-> this") |
| 47 | public ManagedString remove(int from) { |
no test coverage detected