File: sort.mli

package info (click to toggle)
ocaml-stdcompat 19-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 6,516 kB
  • sloc: ml: 27,806; sh: 875; makefile: 246
file content (6 lines) | stat: -rw-r--r-- 474 bytes parent folder | download | duplicates (24)
1
2
3
4
5
6
val list : ('a -> 'a -> bool) -> 'a list -> 'a list[@@ocaml.deprecated
                                                     "Use List.sort instead."]
val array : ('a -> 'a -> bool) -> 'a array -> unit[@@ocaml.deprecated
                                                    "Use Array.sort instead."]
val merge : ('a -> 'a -> bool) -> 'a list -> 'a list -> 'a list[@@ocaml.deprecated
                                                                 "Use List.merge instead."]