new_string_from_logical_fbool Module Function

elemental module function new_string_from_logical_fbool(val) result(new)

Constructor for new string instances from a logical of kind fbool.

Arguments

Type IntentOptional Attributes Name
logical(kind=fbool), intent(in) :: val

Return Value type(string_type)


Calls

proc~~new_string_from_logical_fbool~~CallsGraph proc~new_string_from_logical_fbool new_string_from_logical_fbool interface~to_string to_string proc~new_string_from_logical_fbool->interface~to_string

Source Code

   elemental module function new_string_from_logical_fbool(val) result(new)
      logical(fbool), intent(in) :: val
      type(string_type) :: new
      new%raw = to_string(val)
   end function new_string_from_logical_fbool