get_hex Subroutine

private pure elemental subroutine get_hex(this, hex)

Type Bound

color

Arguments

Type IntentOptional Attributes Name
class(color), intent(in) :: this
character(len=*), intent(out) :: hex

Called by

proc~~get_hex~~CalledByGraph proc~get_hex color%get_hex proc~get color%get proc~get->proc~get_hex program~demo_color demo_color program~demo_color->proc~get program~example26 example26 program~example26->proc~get

Source Code

   elemental pure subroutine get_hex(this, hex)
      class(color), intent(in)    :: this
      character(len=*), intent(out) :: hex

      hex = this%hex
   end subroutine get_hex