1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-19 17:47:53 +03:00
mal/impls/sml/util.sml
2021-05-02 17:35:40 -05:00

17 lines
432 B
Standard ML

fun takeWhile f xs = takeWhile' f [] xs
and takeWhile' f acc [] = rev acc
| takeWhile' f acc (x::xs) = if f x then takeWhile' f (x::acc) xs else rev acc
infix 3 |> fun x |> f = f x
fun eq a b = a = b
fun optOrElse NONE b = b ()
| optOrElse a _ = a
fun valOrElse (SOME x) _ = x
| valOrElse a b = b ()
fun interleave (x::xs) (y::ys) = x :: y :: interleave xs ys
| interleave _ _ = []