Assignment operator from real input.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(string), | intent(inout) | :: | lhs | Left hand side. |
||
| integer(kind=I2P), | intent(in) | :: | rhs | Right hand side. |
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed arrows point from an interface to procedures which implement that interface. This could include the module procedures in a generic interface or the implementation in a submodule of an interface in a parent module.
elemental subroutine string_assign_integer_I2P(lhs, rhs)
!---------------------------------------------------------------------------------------------------------------------------------
!< Assignment operator from real input.
!---------------------------------------------------------------------------------------------------------------------------------
class(string), intent(inout) :: lhs !< Left hand side.
integer(I2P), intent(in) :: rhs !< Right hand side.
!---------------------------------------------------------------------------------------------------------------------------------
!---------------------------------------------------------------------------------------------------------------------------------
lhs%raw = trim(str(rhs))
return
!---------------------------------------------------------------------------------------------------------------------------------
endsubroutine string_assign_integer_I2P