Compare commits

..

2 commits

Author SHA1 Message Date
Simon Cruanes
ec898e631f
prepare for 3.18
Some checks failed
format / format (push) Has been cancelled
Build and Test / build (push) Has been cancelled
2026-02-12 08:52:47 -05:00
Simon Cruanes
9ec34f8bf8
fix(CCSeq): correct conditional compilation version for init
Seq.init was added in OCaml 4.14, not 4.11. This aligns the
implementation with the interface which was already correctly
marked with [@@@iflt 4.14].
2026-02-12 08:52:46 -05:00

View file

@ -20,7 +20,7 @@ let cons a b () = Cons (a, b)
let singleton x () = Cons (x, nil)
[@@@endif]
[@@@iflt 4.11]
[@@@iflt 4.14]
let init n f =
let rec aux i () =