bs-sentia-std
Advanced tools
Comparing version 7.0.0 to 7.1.0
@@ -752,2 +752,24 @@ // Generated by BUCKLESCRIPT VERSION 1.9.0, PLEASE EDIT WITH CARE | ||
function filterMap(f, _xs) { | ||
while(true) { | ||
var xs = _xs; | ||
if (xs) { | ||
var xs$1 = xs[1]; | ||
var match = Curry._1(f, xs[0]); | ||
if (match) { | ||
return /* :: */[ | ||
match[0], | ||
filterMap(f, xs$1) | ||
]; | ||
} else { | ||
_xs = xs$1; | ||
continue ; | ||
} | ||
} else { | ||
return /* [] */0; | ||
} | ||
}; | ||
} | ||
function iter(f, _xs) { | ||
@@ -1512,2 +1534,3 @@ while(true) { | ||
flatMap2, | ||
filterMap, | ||
iter, | ||
@@ -1514,0 +1537,0 @@ iter2, |
{ | ||
"name": "bs-sentia-std", | ||
"version": "7.0.0", | ||
"version": "7.1.0", | ||
"scripts": { | ||
@@ -5,0 +5,0 @@ "clean": "bsb -clean-world", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
86632
2833