new_string_from_integer_int64 Module Function

elemental module function new_string_from_integer_int64(val) result(new)

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

Arguments

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

Return Value type(string_type)


Calls

proc~~new_string_from_integer_int64~~CallsGraph proc~new_string_from_integer_int64 new_string_from_integer_int64 interface~to_string to_string proc~new_string_from_integer_int64->interface~to_string

Source Code

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