get_num_colors Function

private pure elemental function get_num_colors(this) result(num_colors)

Type Bound

format_lut

Arguments

Type IntentOptional Attributes Name
class(format_lut), intent(in) :: this

Return Value integer


Called by

proc~~get_num_colors~~CalledByGraph proc~get_num_colors format_lut%get_num_colors proc~export format_lut%export proc~export->proc~get_num_colors program~test15 test15 program~test15->proc~export program~test16 test16 program~test16->proc~export

Source Code

   pure elemental function get_num_colors(this) result(num_colors)
      class(format_lut), intent(in) :: this
      integer :: num_colors
      num_colors = this%num_colors
   end function get_num_colors