Equations
- FloatArray.instInhabited = { default := FloatArray.empty }
Equations
- FloatArray.instEmptyCollection = { emptyCollection := FloatArray.empty }
Instances For
instance
FloatArray.instGetElemNatFloatLtSize :
GetElem FloatArray Nat Float fun (xs : FloatArray) (i : Nat) => i < xs.size
Equations
- FloatArray.instGetElemNatFloatLtSize = { getElem := fun (xs : FloatArray) (i : Nat) (h : i < xs.size) => xs.get ⟨i, h⟩ }
instance
FloatArray.instGetElemUSizeFloatLtNatValValSize :
GetElem FloatArray USize Float fun (xs : FloatArray) (i : USize) => ↑i.val < xs.size
Equations
- FloatArray.instGetElemUSizeFloatLtNatValValSize = { getElem := fun (xs : FloatArray) (i : USize) (h : ↑i.val < xs.size) => xs.uget i h }
@[extern lean_float_array_uset]
Equations
- { data := ds }.uset x✝¹ x✝ x = { data := ds.uset x✝¹ x✝ x }
Instances For
@[extern lean_float_array_fset]
Equations
- { data := ds }.set i x = { data := ds.set i x }
Instances For
@[extern lean_float_array_set]
Equations
- { data := ds }.set! x✝ x = { data := ds.set! x✝ x }
Instances For
Equations
- ds.toList = FloatArray.toList.loop ds 0 []
Instances For
@[inline]
unsafe def
FloatArray.forInUnsafe
{β : Type v}
{m : Type v → Type w}
[Monad m]
(as : FloatArray)
(b : β)
(f : Float → β → m (ForInStep β))
:
m β
We claim this unsafe implementation is correct because an array cannot have more than usizeSz
elements in our runtime.
This is similar to the Array
version.
Instances For
@[implemented_by FloatArray.forInUnsafe]
def
FloatArray.forIn
{β : Type v}
{m : Type v → Type w}
[Monad m]
(as : FloatArray)
(b : β)
(f : Float → β → m (ForInStep β))
:
m β
Reference implementation for forIn
Equations
- as.forIn b f = FloatArray.forIn.loop as f as.size ⋯ b
Instances For
def
FloatArray.forIn.loop
{β : Type v}
{m : Type v → Type w}
[Monad m]
(as : FloatArray)
(f : Float → β → m (ForInStep β))
(i : Nat)
(h : i ≤ as.size)
(b : β)
:
m β
Equations
- One or more equations did not get rendered due to their size.
- FloatArray.forIn.loop as f 0 x b = pure b
Instances For
@[inline]
unsafe def
FloatArray.foldlMUnsafe
{β : Type v}
{m : Type v → Type w}
[Monad m]
(f : β → Float → m β)
(init : β)
(as : FloatArray)
(start : optParam Nat 0)
(stop : optParam Nat as.size)
:
m β
See comment at forInUnsafe
Instances For
@[specialize #[]]
unsafe def
FloatArray.foldlMUnsafe.fold
{β : Type v}
{m : Type v → Type w}
[Monad m]
(f : β → Float → m β)
(as : FloatArray)
(i : USize)
(stop : USize)
(b : β)
:
m β
Instances For
@[implemented_by FloatArray.foldlMUnsafe]
def
FloatArray.foldlM
{β : Type v}
{m : Type v → Type w}
[Monad m]
(f : β → Float → m β)
(init : β)
(as : FloatArray)
(start : optParam Nat 0)
(stop : optParam Nat as.size)
:
m β
Reference implementation for foldlM
Equations
- One or more equations did not get rendered due to their size.
Instances For
@[inline]
def
FloatArray.foldl
{β : Type v}
(f : β → Float → β)
(init : β)
(as : FloatArray)
(start : optParam Nat 0)
(stop : optParam Nat as.size)
:
β
Equations
- FloatArray.foldl f init as start stop = (FloatArray.foldlM f init as start stop).run
Instances For
Equations
- ds.toFloatArray = List.toFloatArray.loop ds FloatArray.empty
Instances For
Equations
- List.toFloatArray.loop [] x = x
- List.toFloatArray.loop (b :: ds) x = List.toFloatArray.loop ds (x.push b)
Instances For
Equations
- instToStringFloatArray = { toString := fun (ds : FloatArray) => ds.toList.toString }