combinations method

  1. @override
Iterable<OrphanHand> combinations(
  1. int count
)
override

Implementation

@override
Iterable<OrphanHand> combinations(int count) sync* {
  yield* _cards.combinations(count);
}