Function onejoker::poker::games::badugi::ojp_bg_full_text

source ยท
pub fn ojp_bg_full_text(d: &HandDescription) -> String
Expand description

wiki | Describe Badugi hand

use onejoker::prelude::*;

let hand = Hand::new(DeckType::Low).init(hand!("9s","7c","5h","8d"));
let v = Scale::Badugi.value(&hand);
let d = Scale::Badugi.description(&hand, v);
println!("{}", d.full_text());
// Output: "nine, eight, seven, five"