= real
operator.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(integrand_lcce), | intent(inout) | :: | lhs | Left hand side. |
||
real(kind=R_P), | intent(in) | :: | rhs(1:) | Right hand side. |
pure subroutine assign_real(lhs, rhs)
!< `= real` operator.
class(integrand_lcce), intent(inout) :: lhs !< Left hand side.
real(R_P), intent(in) :: rhs(1:) !< Right hand side.
lhs%U = rhs(1)
endsubroutine assign_real