Macro deckofcards::combine_hands [] [src]

macro_rules! combine_hands {
    ( $( $h: expr),* ) => { ... };
}

Creates a new Hand that is the combination two hands into one hand. This does not consume the original hands.

Examples

Combine hand1 and hand2 into a new hand_combined.

let hand_combined = combine_hands!(hand1, hand2);