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