fast-check
Version:
Property based testing framework for JavaScript (like QuickCheck)
89 lines (88 loc) • 2.08 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.stream = exports.Stream = void 0;
const StreamHelpers_1 = require("./StreamHelpers");
class Stream {
constructor(g) {
this.g = g;
}
static nil() {
return new Stream(StreamHelpers_1.nilHelper());
}
next() {
return this.g.next();
}
[Symbol.iterator]() {
return this.g;
}
map(f) {
return new Stream(StreamHelpers_1.mapHelper(this.g, f));
}
flatMap(f) {
return new Stream(StreamHelpers_1.flatMapHelper(this.g, f));
}
dropWhile(f) {
let foundEligible = false;
function* helper(v) {
if (foundEligible || !f(v)) {
foundEligible = true;
yield v;
}
}
return this.flatMap(helper);
}
drop(n) {
let idx = 0;
function helper() {
return idx++ < n;
}
return this.dropWhile(helper);
}
takeWhile(f) {
return new Stream(StreamHelpers_1.takeWhileHelper(this.g, f));
}
take(n) {
let idx = 0;
function helper() {
return idx++ < n;
}
return this.takeWhile(helper);
}
filter(f) {
return new Stream(StreamHelpers_1.filterHelper(this.g, f));
}
every(f) {
for (const v of this.g) {
if (!f(v)) {
return false;
}
}
return true;
}
has(f) {
for (const v of this.g) {
if (f(v)) {
return [true, v];
}
}
return [false, null];
}
join(...others) {
return new Stream(StreamHelpers_1.joinHelper(this.g, others));
}
getNthOrLast(nth) {
let remaining = nth;
let last = null;
for (const v of this.g) {
if (remaining-- === 0)
return v;
last = v;
}
return last;
}
}
exports.Stream = Stream;
function stream(g) {
return new Stream(g);
}
exports.stream = stream;