Operator =.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(free_conditions_object), | intent(inout) | :: | lhs | Left hand side. |
||
| type(free_conditions_object), | intent(in) | :: | rhs | Right hand side. |
pure subroutine free_assign_free(lhs, rhs)
!< Operator `=`.
class(free_conditions_object), intent(inout) :: lhs !< Left hand side.
type(free_conditions_object), intent(in) :: rhs !< Right hand side.
lhs%error = rhs%error
lhs%velocity = rhs%velocity
endsubroutine free_assign_free