@[inline]
unsafe def
FloatArray.mapMUnsafe
{m : Type → Type u_1}
[Monad m]
(a : FloatArray)
(f : Float → m Float)
:
Unsafe optimized implementation of mapM
.
This function is unsafe because it relies on the implementation limit that the size of an array is
always less than USize.size
.
Instances For
@[specialize #[]]
unsafe def
FloatArray.mapMUnsafe.loop
{m : Type → Type u_1}
[Monad m]
(f : Float → m Float)
(a : FloatArray)
(k : USize)
(s : USize)
:
Inner loop for mapMUnsafe
.
Instances For
@[implemented_by FloatArray.mapMUnsafe]
mapM f a
applies the monadic function f
to each element of the array.
Equations
- One or more equations did not get rendered due to their size.