dotProduct

Undocumented in source. Be warned that the author may not have intended to support it.
  1. auto dotProduct(Range1 a, Range2 b)
  2. auto dotProduct(Range1 a, Range2 b)
    version(!LDC)
    package
    dotProduct
    (
    Range1
    Range2
    )
    (
    Range1 a
    ,
    Range2 b
    )
    if (
    isInputRange!Range1 &&
    isInputRange!Range2
    &&
    (
    !isArray!Range1 ||
    !isArray!Range2
    )
    &&
    is(Unqual!(ElementType!Range1) : Unqual!(ElementType!Range2))
    )
  3. T dotProduct(T[] a, T[] b)
  4. T dotProduct(T[] a, T[] b)

Meta