(index, str, enc)
| 363 | } |
| 364 | |
| 365 | setString(index, str, enc) { |
| 366 | return this.set(index, Stack.fromString(str, enc)); |
| 367 | } |
| 368 | |
| 369 | pushString(str, enc) { |
| 370 | return this.push(Stack.fromString(str, enc)); |
nothing calls this directly
no test coverage detected