Skip to content

Releases: petamoriken/float16

v3.4.2

29 Aug 00:14
v3.4.2
fc8f071
Compare
Choose a tag to compare
  • Fix: Add missing types (2a8d4b0)
  • Optimize: Don't copy Array in Float16Array constructor (355f5c4)

v3.4.1

27 Aug 20:25
v3.4.1
9f7c7f3
Compare
Choose a tag to compare
  • Fix: Correct parts that differed from specifications (c79faa3)
  • Update: Make DataView check more solid (e7fc812)
  • Update README.md

v3.4.0

24 Aug 13:31
v3.4.0
c865ed0
Compare
Choose a tag to compare

v3.3.3

22 Aug 13:27
v3.3.3
6f8c156
Compare
Choose a tag to compare
  • Refactoring
  • Update README.md

v3.3.2

21 Aug 10:01
Compare
Choose a tag to compare

The dependencies are gone from this package!

v3.3.1

20 Aug 10:39
Compare
Choose a tag to compare
  • Update not to copy buffer in Float16Array#set (c991146)

v3.3.0

12 Aug 01:22
Compare
Choose a tag to compare
  • Add browser/float16.mjs file to use ES Modules in browsers (b59a4f7)

v3.2.3

07 Aug 14:31
Compare
Choose a tag to compare
  • More solid Implementation part3 (#450)

    • Float16Array constructor respects input TypedArray.[[ViewedArrayBuffer]]'s @@species
    • Float16Array constructor prioritizes Iterable processing over ArrayLike processing
    • Float16Array#set does nothing if input is a Iterable without ArrayLike
    • Float16Array#[@@iterator] is the same function as Float16Array#values
    • Float16Array#{map, filter, slice, subarray} is more solid implementation

v3.2.2

06 Aug 06:02
Compare
Choose a tag to compare
  • More solid Implementation part2 (#449)

    • Float16Array#{values, entries, @@iterator} return a ArrayIterator-like object
    • Float16Array#{map, filter, slice, subarray} respect @@species

v3.2.1

02 Aug 02:42
Compare
Choose a tag to compare
  • More solid Implementation (#442)

    • Float16Array.of is not constructor wrapper
    • Float16Array#{values, entries, @@iterator} return a iteretor that doesn't have "return" and "throw" methods
    • Float16Array#{map, includes} optimization
    • Float16Array#reduce{, Right} throw TypeError on empty array with no initial value