VectorDivisible

public protocol VectorDivisible : VectorMultiplicative where Self.Scalar : DivisibleArithmetic

Represents a VectorType with support for division.

  • Undocumented

    Declaration

    Swift

    static func / (lhs: Self, rhs: Self) -> Self
  • Undocumented

    Declaration

    Swift

    static func / (lhs: Self, rhs: Scalar) -> Self
  • Undocumented

    Declaration

    Swift

    static func / (lhs: Scalar, rhs: Self) -> Self
  • /=(_:_:) Default implementation

    Undocumented

    Default Implementation

    Undocumented

    Declaration

    Swift

    static func /= (lhs: inout Self, rhs: Self)
  • Undocumented

    Declaration

    Swift

    static func /= (lhs: inout Self, rhs: Scalar)