Operator =.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(time_object), | intent(inout) | :: | lhs | Left hand side. |
||
| type(time_object), | intent(in) | :: | rhs | Right hand side. |
pure subroutine time_assign_time(lhs, rhs)
!< Operator `=`.
class(time_object), intent(inout) :: lhs !< Left hand side.
type(time_object), intent(in) :: rhs !< Right hand side.
lhs%error = rhs%error
lhs%n = rhs%n
lhs%t = rhs%t
lhs%n_max = rhs%n_max
lhs%t_max = rhs%t_max
lhs%CFL = rhs%CFL
lhs%is_unsteady = rhs%is_unsteady
endsubroutine time_assign_time