Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=:), | intent(inout), | allocatable | :: | ch | ||
class(String), | intent(in) | :: | this |
subroutine assign_character_from_string(ch, this) character(len=:), allocatable, intent(inout) :: ch class(String), intent(in) :: this ch = this%s_ end subroutine assign_character_from_string