Max Graey

Results 152 issues of Max Graey

Replace it to builtin intrinsics after landing https://github.com/AssemblyScript/assemblyscript/pull/1474

I created special package for more performant StringBuilder called StringSink: https://github.com/MaxGraey/as-string-sink It still in WIP and not even tested yet but I'm really wondering how this may speedup type-off project.

It's nice to have the support WebGL2 and es 300 shaders in preview.

Better avoid aggregated TypedArrays inside Math primitives like Vector2, Matrix, Quaternion and etc. In AS much more efficiently when you have less indirections. Also TypedArrays required bounds checks which also...

I suggest the following structure for the project: - FAQ βœ… / ru.md / en.md ... - meetings ⬜ / README.md _(collection of links to all known open meetings related...

meta

1) **info** _(current)_ 2) basics 3) meta 4) general 5) intro 6) other _(your suggestion)_

meta

I don't think `string.eq` alone will be enough. For string sorting we also need `string.lt` (a < b) and `string.gt` (a > b) operations. Or ideally replacing `string.eq` (or at...

```ts enum Weekend { Friday = 'FRIDAY', Saturday = 'SATURDAY', Sunday = 'SUNDAY' } ```

enhancement