fullHouseMadeFlopToRiverExactProbabilityAsync
Async full house made.
Card lists use CardInput (string[] or packed Uint8Array). See Card notation.
Optional trailing { signal?: AbortSignal } via AsyncOptions.
fullHouseMadeFlopToRiverExactProbabilityAsync(heroHoleCards: CardInput, flopThree: CardInput, knownDead: CardInput, options?: AsyncOptions): Promise<number>
Import
const poker = require('poker-calculations');
ESM (Node):
import { createRequire } from 'module';
const require = createRequire(import.meta.url);
const poker = require('poker-calculations');
When to use
Async full-house-made enumeration.
How to use
const hole = ['Ah', 'Ad'];
const flop = ['Ac', '7d', '9c'];
const p = await poker.fullHouseMadeFlopToRiverExactProbabilityAsync(hole, flop, []);
console.log(p);
See also
full-house-made-flop-to-river-exact-probability · AsyncOptions