(int offset, @NotNull String s)
| 28 | } |
| 29 | |
| 30 | @NotNull @Contract("-> this") |
| 31 | public ManagedString insert(int offset, @NotNull String s) { |
| 32 | assert s != null : "Can't insrert with s == null"; |
| 33 | Stats.onNativeCall(); |
| 34 | _nInsert(_ptr, offset, s); |
| 35 | return this; |
| 36 | } |
| 37 | |
| 38 | @NotNull @Contract("-> this") |
| 39 | public ManagedString append(@NotNull String s) { |
no test coverage detected