get_decimal Subroutine

private pure elemental subroutine get_decimal(this, decimal)

Type Bound

color

Arguments

Type IntentOptional Attributes Name
class(color), intent(in) :: this
integer(kind=ik), intent(out) :: decimal

Called by

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

Source Code

   elemental pure subroutine get_decimal(this, decimal)
      class(color), intent(in)  :: this
      integer(ik),  intent(out) :: decimal

      decimal = this%decimal
   end subroutine get_decimal