github-tui/lib/list_extra.ml
2024-03-23 10:26:12 +00:00

13 lines
272 B
OCaml

let in_between ~sep list =
let rec loop = function
| [] -> []
| x :: xs -> sep :: x :: loop xs
in
match list with
| [] | [ _ ] -> list
| x :: xs -> x :: loop xs
let generate n f =
let rec loop i = if i = n then [] else f i :: loop (i + 1) in
loop 0