File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ exports.someImpl = function someImpl (a,p) {
7373} ;
7474
7575
76- exports . fillImpl = function fillImpl ( a , x , s , e ) {
76+ exports . fillImpl = function fillImpl ( x , s , e , a ) {
7777 return a . fill ( x , s , e ) ;
7878} ;
7979
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ foreign import newFloat64Array :: forall a. EffectFn3 a (Nullable ByteOffset) (N
7474foreign import everyImpl :: forall a b . EffectFn2 (ArrayView a ) (Fn2 b Offset Boolean ) Boolean
7575foreign import someImpl :: forall a b . EffectFn2 (ArrayView a ) (Fn2 b Offset Boolean ) Boolean
7676
77- foreign import fillImpl :: forall a b . EffectFn4 ( ArrayView a ) b Offset Offset Unit
77+ foreign import fillImpl :: forall a b . EffectFn4 b Offset Offset ( ArrayView a ) Unit
7878
7979foreign import mapImpl :: forall a b . EffectFn2 (ArrayView a ) (EffectFn2 b Offset b ) (ArrayView a )
8080foreign import forEachImpl :: forall a b . EffectFn2 (ArrayView a ) (EffectFn2 b Offset Unit ) Unit
@@ -180,7 +180,7 @@ fromArray a = runEffectFn3 create a null null
180180
181181-- | Fill the array with a value
182182fill :: forall a t . TypedArray a t => t -> Offset -> Offset -> ArrayView a -> Effect Unit
183- fill x s e a = runEffectFn4 fillImpl a x s e
183+ fill x s e a = runEffectFn4 fillImpl x s e a
184184
185185-- | Stores multiple values into the typed array
186186set :: forall a t . TypedArray a t => ArrayView a -> Maybe Offset -> Array t -> Effect Boolean
You can’t perform that action at this time.
0 commit comments