QMCPACK
OTBinary< TinyMatrix< T1, 2, 2 >, TinyMatrix< T2, 2, 2 >, OP > Struct Template Reference
+ Collaboration diagram for OTBinary< TinyMatrix< T1, 2, 2 >, TinyMatrix< T2, 2, 2 >, OP >:

Public Types

using Type_t = typename BinaryReturn< T1, T2, OP >::Type_t
 

Static Public Member Functions

static TinyMatrix< Type_t, 2, 2 > apply (const TinyMatrix< T1, 2, 2 > &lhs, const TinyMatrix< T2, 2, 2 > &rhs, OP op)
 

Detailed Description

template<class T1, class T2, class OP>
struct qmcplusplus::OTBinary< TinyMatrix< T1, 2, 2 >, TinyMatrix< T2, 2, 2 >, OP >

Definition at line 435 of file TinyMatrixOps.h.

Member Typedef Documentation

◆ Type_t

using Type_t = typename BinaryReturn<T1, T2, OP>::Type_t

Definition at line 437 of file TinyMatrixOps.h.

Member Function Documentation

◆ apply()

static TinyMatrix<Type_t, 2, 2> apply ( const TinyMatrix< T1, 2, 2 > &  lhs,
const TinyMatrix< T2, 2, 2 > &  rhs,
OP  op 
)
inlinestatic

Definition at line 438 of file TinyMatrixOps.h.

439  {
440  return TinyMatrix<Type_t, 2, 2>(op(lhs[0], rhs[0]), op(lhs[1], rhs[1]), op(lhs[2], rhs[2]), op(lhs[3], rhs[3]));
441  }

The documentation for this struct was generated from the following file: