times

open operator fun StructureND<T>.times(arg: T): StructureND<T>

Multiplies an ND structure by an element of it.

Return

the product.

Parameters

<receiver>

the multiplicand.

arg

the multiplier.

open operator fun T.times(arg: StructureND<T>): StructureND<T>

Multiplies an element by a ND structure of it.

Return

the product.

Parameters

<receiver>

the multiplicand.

arg

the multiplier.