package dune-private-libs

  1. Overview
  2. Docs
Private libraries of Dune

Install

Dune Dependency

Authors

Maintainers

Sources

dune-3.19.0.tbz
sha256=d2f617dfd34f7d882f4181a22e359bb90b46669ed87b2650eb842f0532fc696c
sha512=9bd4c5825076c88192425f1462fedab1100d5b83a75dfe65592255b127690503b01b61c964990272abe54f0a01a14587ca464e438fa8b9d8560d2576773f39a8

doc/src/dune-private-libs.dune-section/dune_section.ml.html

Source file dune_section.ml

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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
type t =
  | Lib
  | Lib_root
  | Libexec
  | Libexec_root
  | Bin
  | Sbin
  | Toplevel
  | Share
  | Share_root
  | Etc
  | Doc
  | Stublibs
  | Man
  | Misc

let all =
  [ Lib, "lib"
  ; Lib_root, "lib_root"
  ; Libexec, "libexec"
  ; Libexec_root, "libexec_root"
  ; Bin, "bin"
  ; Sbin, "sbin"
  ; Toplevel, "toplevel"
  ; Share, "share"
  ; Share_root, "share_root"
  ; Etc, "etc"
  ; Doc, "doc"
  ; Stublibs, "stublibs"
  ; Man, "man"
  ; Misc, "misc"
  ]
;;

let to_string t = List.assoc t all

let rec of_string x = function
  | [] -> None
  | (s, x') :: xs -> if x' = x then Some s else of_string x xs
;;

let of_string x = of_string x all
OCaml

Innovation. Community. Security.