new_string_from_integer_int32 Module Function

elemental module function new_string_from_integer_int32(val) result(new)

Constructor for new string instances from an integer of kind int32.

Arguments

Type IntentOptional Attributes Name
integer(kind=int32), intent(in) :: val

Return Value type(string_type)


Calls

proc~~new_string_from_integer_int32~~CallsGraph proc~new_string_from_integer_int32 new_string_from_integer_int32 interface~to_string to_string proc~new_string_from_integer_int32->interface~to_string

Source Code

   elemental module function new_string_from_integer_int32(val) result(new)
      integer(int32), intent(in) :: val
      type(string_type) :: new
      new%raw = to_string(val)
   end function new_string_from_integer_int32