diff --git a/source/numerics.tex b/source/numerics.tex index ae6be4760a..7ec3aada0d 100644 --- a/source/numerics.tex +++ b/source/numerics.tex @@ -11143,9 +11143,9 @@ // \ref{linalg.algs.blas1.iamax}, index of maximum absolute value of vector elements template<@\exposconcept{in-vector}@ InVec> - typename InVec::extents_type vector_idx_abs_max(InVec v); + typename InVec::size_type vector_idx_abs_max(InVec v); template - typename InVec::extents_type vector_idx_abs_max(ExecutionPolicy&& exec, InVec v); + typename InVec::size_type vector_idx_abs_max(ExecutionPolicy&& exec, InVec v); // \ref{linalg.algs.blas1.matfrobnorm}, Frobenius norm of a matrix template<@\exposconcept{in-matrix}@ InMat, @\exposconcept{scalar}@ Scalar> @@ -13980,9 +13980,9 @@ \indexlibraryglobal{vector_idx_abs_max}% \begin{itemdecl} template<@\exposconcept{in-vector}@ InVec> - typename InVec::extents_type vector_idx_abs_max(InVec v); + typename InVec::size_type vector_idx_abs_max(InVec v); template - typename InVec::extents_type vector_idx_abs_max(ExecutionPolicy&& exec, InVec v); + typename InVec::size_type vector_idx_abs_max(ExecutionPolicy&& exec, InVec v); \end{itemdecl} \begin{itemdescr}