5 references to Aggregate
System.Numerics.Tensors (5)
System\Numerics\Tensors\netcore\TensorPrimitives.Distance.cs (1)
42return T.Sqrt(Aggregate<T, SubtractSquaredOperator<T>, AddOperator<T>>(x, y));
System\Numerics\Tensors\netcore\TensorPrimitives.Dot.cs (1)
33Aggregate<T, MultiplyOperator<T>, AddOperator<T>>(x, y);
System\Numerics\Tensors\netcore\TensorPrimitives.Product.cs (2)
61return Aggregate<T, SubtractOperator<T>, MultiplyOperator<T>>(x, y); 93return Aggregate<T, AddOperator<T>, MultiplyOperator<T>>(x, y);
System\Numerics\Tensors\netcore\TensorPrimitives.Single.netcore.cs (1)
86Aggregate<float, TSingleBinaryOperator, TSingleAggregationOperator>(x, y);