get_colors Function

private pure function get_colors(this) result(colors)

Type Bound

format_lut

Arguments

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

Return Value integer, dimension(:,:), allocatable


Source Code

   pure function get_colors(this) result(colors)
      class(format_lut), intent(in)        :: this
      integer, dimension(:,:), allocatable :: colors
      colors = this%colors
   end function get_colors