File: glob.mli

package info (click to toggle)
ocaml-dune 2.7.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 14,064 kB
  • sloc: ml: 70,777; lisp: 466; ansic: 241; sh: 209; makefile: 119; python: 38; cpp: 17; javascript: 6
file content (27 lines) | stat: -rw-r--r-- 401 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
open! Stdune

type t

val equal : t -> t -> bool

val compare : t -> t -> Ordering.t

val hash : t -> int

val to_dyn : t Dyn.Encoder.t

val encode : t Dune_lang.Encoder.t

val decode : t Dune_lang.Decoder.t

val test : t -> string -> bool

val filter : t -> string list -> string list

val empty : t

val universal : t

val of_string_exn : Loc.t -> string -> t

val to_pred : t -> string Predicate.t