Skip to main content
Module

x/simplestatistics/src/combinations.d.ts

simple statistics for node & browser javascript
Go to Latest
File
/** * https://simplestatistics.org/docs/#combinations */declare function combinations<T extends any[]>(x: T, k: number): T[];
export default combinations;