Created
July 1, 2021 14:54
-
-
Save idkjs/4ec9646a042c75b605ff169874979354 to your computer and use it in GitHub Desktop.
GroupWhile for Rescript/Reason using Belt lib
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type nonrec t('a) = list('a); | |
let rec dropWhile = (t, ~f) => | |
switch (t) { | |
| [] => [] | |
| [x, ...rest] => | |
if (f(x)) { | |
dropWhile(rest, ~f); | |
} else { | |
t; | |
} | |
}; | |
let takeWhile = (t, ~f) => | |
{ | |
let rec takeWhileHelper = (acc, t) => | |
switch (t) { | |
| [] => Belt.List.reverse(acc) | |
| [x, ...rest] => | |
if (f(x)) { | |
takeWhileHelper([x, ...acc], rest); | |
} else { | |
Belt.List.reverse(acc); | |
} | |
}; | |
takeWhileHelper([], t); | |
}; | |
let span = (t, ~f) => | |
switch (t) { | |
| [] => ([], []) | |
| _ => (takeWhile(t, ~f), dropWhile(t, ~f)) | |
}; | |
let groupWhile = (t, ~f) => | |
{ | |
let rec groupWhileHelper = (t, ~f) => | |
switch (t) { | |
| [] => [] | |
| [x, ...rest] => | |
let (ys, zs) = span(rest, ~f=f(x)); | |
[[x, ...ys], ...groupWhileHelper(zs, ~f)]; | |
}; | |
groupWhileHelper(t, ~f); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Basically this but tail recursive I hope. https://github.com/darklang/tablecloth/blob/7896ab4546195c452489a67b29fbb02c350c381d/bucklescript/src/TableclothList.ml#L253