Skip to main content
Module

x/simplestatistics/src/sample_with_replacement.d.ts

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