Contents

/=(_:_:)

Modifies a floating-point column by dividing each element in the column by the corresponding value in a collection.

Declaration

static func /= <C>(lhs: inout Column<WrappedElement>, rhs: C) where WrappedElement : FloatingPoint, WrappedElement == C.Element, C : Collection

Parameters

  • lhs:

    A column.

  • rhs:

    A collection that contains elements of the same type as the column’s elements.

See Also

Modifying a Column with a Collection of Values