NAME
Poker::Game::OmahaHiLo - Omaha Hold'em high/low 8-or-better
VERSION
Version 0.12
SYNOPSIS
use Poker::Game::OmahaHiLo;
my $game = Poker::Game::OmahaHiLo->new;
my $hero = $game->deal_hole(['As', '2d', '3c', 'Kd']);
$game->runout(['4h', '5c', '9s', 'Jh', 'Kc']);
$game->evaluate($hero);
say $hero->name; # high hand name
say $hero->low_name; # low hand name (if qualifies), or undef
DESCRIPTION
Omaha Hi-Lo: four hole cards, five community cards. Exactly two hole and three community cards for each direction. High uses standard highball; low uses 8-or-better. A hand that does not qualify for low leaves low_score / low_name undefined.
evaluate
Sets high result on score/name/best_combo, and low result on low_score/low_name/low_combo when the hand qualifies for low.
AUTHOR
Nathaniel Graham, <ngraham at cpan.org>
LICENSE AND COPYRIGHT
Copyright 2016-2026 Nathaniel Graham.