hand Derived Type

type :: hand


Components

Type Visibility Attributes Name Initial
character(len=1), public, dimension(5) :: cards

the cards in a hand

integer(kind=ip), public :: bid = 0
integer, public :: type = 0

Source Code

type :: hand
    character(len=1),dimension(5) :: cards !! the cards in a hand
    integer(ip) :: bid = 0 ! the bit for the hand
    integer :: type = 0 ! the hand type
end type hand