package core
- Overview
- No Docs
You can search for identifiers within the package.
in-package search v0.2.0
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
Industrial strength alternative to OCaml's standard library
Install
dune-project
Dependency
Authors
Maintainers
Sources
v0.17.1.tar.gz
md5=743a141234e04210e295980f7a78a6d9
sha512=61b415f4fb12c78d30649fff1aabe3a475eea926ce6edb7774031f4dc7f37ea51f5d9337ead6ec73cd93da5fd1ed0f2738c210c71ebc8fe9d7f6135a06bd176f
doc/src/core/identifiable.ml.html
Source file identifiable.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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118open! Import include Identifiable_intf module Binable = Binable0 module Make_plain (T : sig type t [@@deriving compare, hash, sexp_of] include Stringable.S with type t := t val module_name : string end) = struct include T include Comparable.Make_plain (T) include Hashable.Make_plain (T) include Pretty_printer.Register (T) end module Make (T : sig type t [@@deriving bin_io, compare, hash, sexp] include Stringable.S with type t := t val module_name : string end) = struct include T include Comparable.Make_binable (T) include Hashable.Make_binable (T) include Pretty_printer.Register (T) end module Make_with_sexp_grammar (T : sig type t [@@deriving bin_io, compare, hash, sexp, sexp_grammar] include Stringable.S with type t := t val module_name : string end) = struct include T include Make (T) end module Make_and_derive_hash_fold_t (T : sig type t [@@deriving bin_io, compare, sexp] include Stringable.S with type t := t val hash : t -> int val module_name : string end) = Make (struct include T let hash_fold_t state t = hash_fold_int state (hash t) end) module Make_using_comparator (T : sig type t [@@deriving bin_io, compare, hash, sexp] include Comparator.S with type t := t include Stringable.S with type t := t val module_name : string end) = struct include T include Comparable.Make_binable_using_comparator (T) include Hashable.Make_binable (T) include Pretty_printer.Register (T) end module Make_plain_using_comparator (T : sig type t [@@deriving compare, hash, sexp_of] include Comparator.S with type t := t include Stringable.S with type t := t val module_name : string end) = struct include T include Comparable.Make_plain_using_comparator (T) include Hashable.Make_plain (T) include Pretty_printer.Register (T) end module Make_using_comparator_and_derive_hash_fold_t (T : sig type t [@@deriving bin_io, compare, sexp] include Comparator.S with type t := t include Stringable.S with type t := t val hash : t -> int val module_name : string end) = Make_using_comparator (struct include T let hash_fold_t state t = hash_fold_int state (hash t) end) module Extend (M : Base.Identifiable.S) (B : Binable0.S with type t = M.t) = struct module T = struct include M include (B : Binable.S with type t := t) end include T include Comparable.Extend_binable (M) (T) include Hashable.Make_binable_with_hashable (struct module Key = T let hashable = M.hashable end) end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>