1
0
mirror of https://github.com/fluencelabs/assemblyscript synced 2025-06-21 18:51:43 +00:00

Implement itoa32/64 for base 10 ()

This commit is contained in:
Max Graey
2018-07-13 16:40:37 +03:00
committed by Daniel Wirtz
parent 5ce57a6434
commit d7c1c608bd
13 changed files with 4369 additions and 829 deletions

@ -26,7 +26,7 @@ export class Uint8ClampedArray extends TypedArray<u8,u32> {
super.__set(index, max(min(value, 255), 0));
}
@operator("{}=")
@inline @operator("{}=")
protected __unchecked_set(index: i32, value: i32): void {
super.__unchecked_set(index, max(min(value, 255), 0));
}