package file_path

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file types.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
open! Core
include Types_intf

module T = struct
  type t = string [@@deriving equal, hash, sexp_of, sexp_grammar]

  let to_string = Fn.id
  let compare = Path_string.compare

  include (val Comparator.make ~compare ~sexp_of_t)

  module Expert = struct
    let unchecked_of_canonical_string = Fn.id
  end
end

module Path = T
module Absolute = T
module Relative = T
module Part = T