Home Browse Files
template <typename VX, typename VY>
    typename RestrictTo<IsDenseVector<VX>::value
                     && IsDenseVector<VY>::value,
             void>::Type
    copy(const VX &x, VY &&y);

Defined in namespace flens::blas. Function copy with 2 template parameters.

template <typename VX, typename VY>
    typename RestrictTo<IsDenseVector<VX>::value
                     && IsDenseVector<VY>::value,
             void>::Type
    copy(bool conjX, const VX &x, VY &&y);

Defined in namespace flens::blas. Function copy with 2 template parameters.

template <typename MA, typename MB>
    typename RestrictTo<IsGeMatrix<MA>::value
                     && IsGeMatrix<MB>::value,
             void>::Type
    copy(Transpose trans, const MA &A, MB &&B);

Defined in namespace flens::blas. Function copy with 2 template parameters.

template <typename MA, typename MB>
    typename RestrictTo<IsTrMatrix<MA>::value
                     && IsTrMatrix<MB>::value,
             void>::Type
    copy(Transpose trans, const MA &A, MB &&B);

Defined in namespace flens::blas. Function copy with 2 template parameters.

Home

View document source

© 2011-2015 Michael Lehn