1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-29 13:52:22 +00:00

Merge pull request #407 from walkthecat/patch-1

Update simd.md
This commit is contained in:
Ruan YiFeng 2017-05-17 06:33:24 -05:00 committed by GitHub
commit a96f510e7f

View File

@ -167,7 +167,7 @@ SIMD.Int16x8.subSaturate(c, d)
// Int16x8[-32768, 0, 0, 0, 0, 0, 0, 0, 0]
```
上面代码中,`Uint16`的最小值是`0``subSaturate`的最小值是`-32678`。一旦运算发生溢出,就返回最小值。
上面代码中,`Uint16`的最小值是`0``Int16`的最小值是`-32678`。一旦运算发生溢出,就返回最小值。
### SIMD.%type%.mul()SIMD.%type%.div()SIMD.%type%.sqrt()