Vec.div

Divides this vector by another vector, element-wise.

  1. MY_TYPE div(V factor)
  2. MY_TYPE div(Vec!(V, size) other)
    struct Vec(T, size_t size)
    ref @nogc
    MY_TYPE
    div
    (
    V
    )
    (
    Vec!(V, size) other
    )
    if (
    isNumeric!V
    )
    if (
    isNumeric!T &&
    size > 0
    )

Parameters

other Vec!(V, size)

The other vector to divide with.

Return Value

Type: MY_TYPE

A reference to this vector, for method chaining.

Meta