times

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

Multiplies an ND structure by an element of it.

Receiver

the multiplicand.

Return

the product.

Parameters

arg

the multiplier.


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

Multiplies an element by a ND structure of it.

Receiver

the multiplicand.

Return

the product.

Parameters

arg

the multiplier.