real_scalar *
operator.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=R_P), | intent(in) | :: | lhs | Left hand side. |
||
class(integrand_lcce), | intent(in) | :: | rhs | Right hand side. |
Operator result.
pure function real_scalar_multiply_integrand(lhs, rhs) result(opr)
!< `real_scalar *` operator.
real(R_P), intent(in) :: lhs !< Left hand side.
class(integrand_lcce), intent(in) :: rhs !< Right hand side.
real(R_P), allocatable :: opr(:) !< Operator result.
opr = [lhs * rhs%U]
endfunction real_scalar_multiply_integrand