mte/unikernel/duniverse/ppxlib/ast/stdlib0.ml

8 lines
149 B
OCaml
Raw Normal View History

2025-11-11 02:07:51 +01:00
module Int = struct
let to_string = string_of_int
end
module Option = struct
let map f o = match o with None -> None | Some v -> Some (f v)
end