@@ -21,22 +21,21 @@ module Data.ArrayBuffer.Typed
21
21
, toString , toString' , toArray
22
22
) where
23
23
24
- import Prelude (Unit , (>=), (&&), (<<<), (<=), pure , (-), flip , (*), (*>))
25
-
26
24
import Data.Array (length ) as A
27
25
import Data.ArrayBuffer.Types (ArrayView , kind ArrayViewType , ArrayBuffer , ByteOffset , ByteLength , Float64Array , Float32Array , Uint8ClampedArray , Uint32Array , Uint16Array , Uint8Array , Int32Array , Int16Array , Int8Array , Float64 , Float32 , Uint8Clamped , Uint32 , Uint16 , Uint8 , Int32 , Int16 , Int8 )
28
26
import Data.ArrayBuffer.ValueMapping (class BinaryValue , class BytesPerValue )
27
+ import Data.Float32 (Float32 ) as F
29
28
import Data.Function.Uncurried (Fn2 , Fn3 , mkFn2 , runFn2 , runFn3 )
30
29
import Data.Maybe (Maybe (..), fromMaybe )
31
30
import Data.Nullable (Nullable , notNull , null , toMaybe , toNullable )
32
31
import Data.Tuple (Tuple (..))
33
32
import Data.Typelevel.Num (class Nat , toInt' )
34
33
import Data.UInt (UInt )
35
- import Data.Float32 (Float32 ) as F
36
34
import Effect (Effect )
37
35
import Effect.Uncurried (EffectFn1 , EffectFn2 , EffectFn3 , EffectFn4 , mkEffectFn2 , mkEffectFn3 , runEffectFn1 , runEffectFn2 , runEffectFn3 , runEffectFn4 )
38
36
import Effect.Unsafe (unsafePerformEffect )
39
37
import Partial.Unsafe (unsafePartial )
38
+ import Prelude (Unit , (>=), (&&), (<<<), (<=), pure , (-), flip , (*), (*>))
40
39
import Type.Proxy (Proxy (..))
41
40
42
41
@@ -60,15 +59,15 @@ length = lengthImpl
60
59
61
60
-- object creator implementations for each typed array
62
61
63
- foreign import newUint8ClampedArray :: forall a . Fn3 a (Nullable ByteOffset ) (Nullable ByteLength ) Uint8ClampedArray
64
- foreign import newUint32Array :: forall a . Fn3 a (Nullable ByteOffset ) (Nullable ByteLength ) Uint32Array
65
- foreign import newUint16Array :: forall a . Fn3 a (Nullable ByteOffset ) (Nullable ByteLength ) Uint16Array
66
- foreign import newUint8Array :: forall a . Fn3 a (Nullable ByteOffset ) (Nullable ByteLength ) Uint8Array
67
- foreign import newInt32Array :: forall a . Fn3 a (Nullable ByteOffset ) (Nullable ByteLength ) Int32Array
68
- foreign import newInt16Array :: forall a . Fn3 a (Nullable ByteOffset ) (Nullable ByteLength ) Int16Array
69
- foreign import newInt8Array :: forall a . Fn3 a (Nullable ByteOffset ) (Nullable ByteLength ) Int8Array
70
- foreign import newFloat32Array :: forall a . Fn3 a (Nullable ByteOffset ) (Nullable ByteLength ) Float32Array
71
- foreign import newFloat64Array :: forall a . Fn3 a (Nullable ByteOffset ) (Nullable ByteLength ) Float64Array
62
+ foreign import newUint8ClampedArray :: forall a . EffectFn3 a (Nullable ByteOffset ) (Nullable ByteLength ) Uint8ClampedArray
63
+ foreign import newUint32Array :: forall a . EffectFn3 a (Nullable ByteOffset ) (Nullable ByteLength ) Uint32Array
64
+ foreign import newUint16Array :: forall a . EffectFn3 a (Nullable ByteOffset ) (Nullable ByteLength ) Uint16Array
65
+ foreign import newUint8Array :: forall a . EffectFn3 a (Nullable ByteOffset ) (Nullable ByteLength ) Uint8Array
66
+ foreign import newInt32Array :: forall a . EffectFn3 a (Nullable ByteOffset ) (Nullable ByteLength ) Int32Array
67
+ foreign import newInt16Array :: forall a . EffectFn3 a (Nullable ByteOffset ) (Nullable ByteLength ) Int16Array
68
+ foreign import newInt8Array :: forall a . EffectFn3 a (Nullable ByteOffset ) (Nullable ByteLength ) Int8Array
69
+ foreign import newFloat32Array :: forall a . EffectFn3 a (Nullable ByteOffset ) (Nullable ByteLength ) Float32Array
70
+ foreign import newFloat64Array :: forall a . EffectFn3 a (Nullable ByteOffset ) (Nullable ByteLength ) Float64Array
72
71
73
72
74
73
-- ----
@@ -135,7 +134,7 @@ type Range = Maybe (Tuple Offset (Maybe Offset))
135
134
-- | - `toString` prints to a CSV, `toString'` allows you to supply the delimiter
136
135
-- | - `toArray` returns an array of numeric values
137
136
class BinaryValue a t <= TypedArray (a :: ArrayViewType ) (t :: Type ) | a -> t where
138
- create :: forall x . Fn3 x (Nullable ByteOffset ) (Nullable ByteLength ) (ArrayView a )
137
+ create :: forall x . EffectFn3 x (Nullable ByteOffset ) (Nullable ByteLength ) (ArrayView a )
139
138
140
139
instance typedArrayUint8Clamped :: TypedArray Uint8Clamped UInt where
141
140
create = newUint8ClampedArray
@@ -157,32 +156,32 @@ instance typedArrayFloat64 :: TypedArray Float64 Number where
157
156
create = newFloat64Array
158
157
159
158
-- | View mapping the whole `ArrayBuffer`.
160
- whole :: forall a t . TypedArray a t => ArrayBuffer -> ArrayView a
161
- whole a = runFn3 create a null null
159
+ whole :: forall a t . TypedArray a t => ArrayBuffer -> Effect ( ArrayView a )
160
+ whole a = runEffectFn3 create a null null
162
161
163
162
-- | View mapping the rest of an `ArrayBuffer` after an index.
164
- remainder :: forall a b t . TypedArray a t => Nat b => BytesPerValue a b => ArrayBuffer -> Offset -> ArrayView a
163
+ remainder :: forall a b t . TypedArray a t => Nat b => BytesPerValue a b => ArrayBuffer -> Offset -> Effect ( ArrayView a )
165
164
remainder a x = remainder' a o
166
165
where o = x * toInt' (Proxy :: Proxy b )
167
166
168
- remainder' :: forall a t . TypedArray a t => ArrayBuffer -> ByteOffset -> ArrayView a
169
- remainder' a x = runFn3 create a (notNull x) null
167
+ remainder' :: forall a t . TypedArray a t => ArrayBuffer -> ByteOffset -> Effect ( ArrayView a )
168
+ remainder' a x = runEffectFn3 create a (notNull x) null
170
169
171
170
-- | View mapping a region of the `ArrayBuffer`.
172
- part :: forall a b t . TypedArray a t => Nat b => BytesPerValue a b => ArrayBuffer -> Offset -> Length -> ArrayView a
171
+ part :: forall a b t . TypedArray a t => Nat b => BytesPerValue a b => ArrayBuffer -> Offset -> Length -> Effect ( ArrayView a )
173
172
part a x y = part' a o y
174
173
where o = x * toInt' (Proxy :: Proxy b )
175
174
176
- part' :: forall a t . TypedArray a t => ArrayBuffer -> ByteOffset -> Length -> ArrayView a
177
- part' a x y = runFn3 create a (notNull x) (notNull y)
175
+ part' :: forall a t . TypedArray a t => ArrayBuffer -> ByteOffset -> Length -> Effect ( ArrayView a )
176
+ part' a x y = runEffectFn3 create a (notNull x) (notNull y)
178
177
179
178
-- | Creates an empty typed array, where each value is assigned 0
180
- empty :: forall a t . TypedArray a t => Length -> ArrayView a
181
- empty n = runFn3 create n null null
179
+ empty :: forall a t . TypedArray a t => Length -> Effect ( ArrayView a )
180
+ empty n = runEffectFn3 create n null null
182
181
183
182
-- | Creates a typed array from an input array of values, to be binary serialized
184
- fromArray :: forall a t . TypedArray a t => Array t -> ArrayView a
185
- fromArray a = runFn3 create a null null
183
+ fromArray :: forall a t . TypedArray a t => Array t -> Effect ( ArrayView a )
184
+ fromArray a = runEffectFn3 create a null null
186
185
187
186
-- | Fill the array with a value
188
187
fill :: forall a t . TypedArray a t => ArrayView a -> t -> Range -> Effect Unit
@@ -424,8 +423,8 @@ at a n = if a `hasIndex` n
424
423
infixl 3 at as !
425
424
426
425
427
- foreign import toArrayImpl :: forall a b . ArrayView a -> Array b
426
+ foreign import toArrayImpl :: forall a b . EffectFn1 ( ArrayView a ) ( Array b )
428
427
429
428
-- | Turn typed array into an array.
430
- toArray :: forall a t . TypedArray a t => ArrayView a -> Array t
431
- toArray = toArrayImpl
429
+ toArray :: forall a t . TypedArray a t => ArrayView a -> Effect ( Array t )
430
+ toArray a = runEffectFn1 toArrayImpl a
0 commit comments