package base

  1. Overview
  2. Docs
Full standard library replacement for OCaml

Install

Dune Dependency

Authors

Maintainers

Sources

base-v0.15.0.tar.gz
sha256=8657ae4324a9948457112245c49d97d2da95f157f780f5d97f0b924312a6a53d

Description

Full standard library replacement for OCaml

Base is a complete and portable alternative to the OCaml standard library. It provides all standard functionalities one would expect from a language standard library. It uses consistent conventions across all of its module.

Base aims to be usable in any context. As a result system dependent features such as I/O are not offered by Base. They are instead provided by companion libraries such as stdio:

https://github.com/janestreet/stdio

Published: 21 Mar 2022

README

README.org

* Base

Base is a standard library for OCaml. It provides a standard set of
general purpose modules that are well-tested, performant, and
fully-portable across any environment that can run OCaml code. Unlike
other standard library projects, Base is meant to be used as a
wholesale replacement of the standard library distributed with the
OCaml compiler. In particular it makes different choices and doesn't
re-export features that are not fully portable such as I/O, which are
left to other libraries.

You also might want to browse the [[https://ocaml.janestreet.com/ocaml-core/latest/doc/base/index.html][API Documentation]].

** Installation

Install Base via [[https://opam.ocaml.org][OPAM]]:

#+begin_src
$ opam install base
#+end_src

Base has no runtime dependencies and is fast to build. Its sole build
dependencies are [[https://github.com/ocaml/dune][dune]], which itself requires nothing more than the
compiler, and [[https://github.com/janestreet/sexplib0][sexplib0]].

** Using the OCaml standard library with Base

Base is intended as a full stdlib replacement.  As a result, after an
=open Base=, all the modules, values, types, ... coming from the OCaml
standard library that one normally gets in the default environment are
deprecated.

In order to access these values, one must use the =Caml= library,
which re-exports them all through the toplevel name =Caml=:
=Caml.String=, =Caml.print_string=, ...

** Differences between Base and the OCaml standard library

Programmers who are used to the OCaml standard library should read
through this section to understand major differences between the two
libraries that one should be aware of when switching to Base.

*** Comparison operators

The comparison operators exposed by the OCaml standard library are
polymorphic:

#+begin_src ocaml
val compare : 'a -> 'a -> int
val ( <= ) : 'a -> 'a -> bool
...
#+end_src

What they implement is structural comparison of the runtime
representation of values. Since these are often error-prone,
i.e. they don't correspond to what the user expects, they are not
exposed directly by Base.

To use polymorphic comparison with Base, one should use the =Poly=
module. The default comparison operators exposed by Base are the
integer ones, just like the default arithmetic operators are the
integer ones.

The recommended way to compare arbitrary complex data structures is to
use the specific =compare= functions. For instance:

#+begin_src ocaml
List.compare String.compare x y
#+end_src

The [[https://github.com/janestreet/ppx_compare][ppx_compare]] rewriter
offers an alternative way to write this:

#+begin_src ocaml
[%compare: string list] x y
#+end_src

** Base and ppx code generators

Base uses a few ppx code generators to implement:

- reliable and customizable comparison of OCaml values
- reliable and customizable hash of OCaml values
- conversions between OCaml values and s-expression

However, it doesn't need these code generators to build. What it does
instead is use ppx as a code verification tool during development. It
works in a very similar fashion to
[[https://github.com/janestreet/ppx_expect][expectation tests]].

Whenever you see this in the code source:

#+begin_src ocaml
type t = ... [@@deriving_inline sexp_of]
let sexp_of_t = ...
[@@@end]
#+end_src

the code between the =[@@deriving_inline]= and the =[@@@end]= is
generated code. The generated code is currently quite big and hard to
read, however we are working on making it look like human-written
code.

You can put the following elisp code in your =~/.emacs= file to hide
these blocks:

#+begin_src scheme
(defun deriving-inline-forward-sexp (&optional arg)
  (search-forward-regexp "\\[@@@end\\]") nil nil arg)

(defun setup-hide-deriving-inline ()
  (inline)
  (hs-minor-mode t)
  (let ((hs-hide-comments-when-hiding-all nil))
    (hs-hide-all)))

(require 'hideshow)
(add-to-list 'hs-special-modes-alist
             '(tuareg-mode "\\[@@deriving_inline[^]]*\\]" "\\[@@@end\\]" nil
                           deriving-inline-forward-sexp nil))
(add-hook 'tuareg-mode-hook 'setup-hide-deriving-inline)
#+end_src

Things are not yet setup in the git repository to make it convenient
to change types and update the generated code, but they will be setup
soon.

** OCaml Version Support

Base will maintain compatibility with the latest OCaml release, and the three
prior minor version releases. Because of this, there will be a lag of four
minor versions before features introduced in the Stdlib will reach Base.

** Base coding rules

There are a few coding rules across the code base that are enforced by
lint tools.

These rules are:

- Opening the =Caml= module is not allowed. Inside Base, the OCaml
  stdlib is shadowed and accessible through the =Caml= module. We
  forbid opening =Caml= so that we know exactly where things come
  from.
- =Caml.Foo= modules cannot be aliased, one must use =Caml.Foo=
  explicitly. This is to avoid having to remember a list of aliases
  at the beginning of each file.
- For some modules that are both in the OCaml stdlib and Base, such as
  =String=, we define a module =String0= for common functions that
  cannot be defined directly in =Base.String= to avoid creating a
  circular dependency.  Except for =String= itself, other modules
  are not allowed to use =Caml.String= and must use either =String= or
  =String0= instead.
- Indentation is exactly the one of =ocp-indent=.
- A few other coding style rules enforced by
  [[https://github.com/janestreet/ppx_js_style][ppx_js_style]].

The Base specific coding rules are checked by =ppx_base_lint=, in the
=lint= subfolder. The indentation rules are checked by a wrapper around
=ocp-indent= and the coding style rules are checked by =ppx_js_style=.

These checks are currently not run by =dune=, but it will soon get a
=-dev= flag to run them automatically.

** Sexp (de-)serializers

Most types in Base have ~sexp_of_t~ and ~t_of_sexp~ functions for converting
between values of that type and their sexp representations.

One pair of functions deserves special attention: ~String.sexp_of_t~ and
~String.t_of_sexp~.  These functions have the same types as ~Sexp.of_string~ and
~Sexp.to_string~ but very different behavior.

~String.sexp_of_t~ and ~String.t_of_sexp~ are used to encode and decode strings
"embedded" in a sexp representation. On the other hand, ~Sexp.of_string~ and
~Sexp.to_string~ are used to encode and decode the textual form of
s-expressions.

The following example demonstrates the two pairs of functions in action:

#+begin_src ocaml
  open! Base
  open! Stdio

  (* Embed a string in a sexp *)

  let example_sexp : Sexp.t = List.sexp_of_t String.sexp_of_t [ "hello"; "world" ]

  let () =
    assert (Sexp.equal example_sexp (Sexp.List [ Sexp.Atom "hello"; Sexp.Atom "world" ]))
  ;;

  let () =
    assert (
      List.equal
        String.equal
        [ "hello"; "world" ]
        (List.t_of_sexp String.t_of_sexp example_sexp))
  ;;

  (* Embed a sexp in text (string) *)

  let write_sexp_to_file sexp =
    Out_channel.write_all "/tmp/file" ~data:(Sexp.to_string example_sexp)
  ;;

  (* /tmp/file now contains:

     {v
       (hello world)
     v} *)

  let () =
    assert (Sexp.equal example_sexp (Sexp.of_string (In_channel.read_all "/tmp/file")))
  ;;
#+end_src

Dependencies (4)

  1. dune-configurator
  2. dune >= "2.0.0"
  3. sexplib0 >= "v0.15" & < "v0.16"
  4. ocaml >= "4.10.0" & < "5.0"

Dev Dependencies

None

  1. abstract_algebra < "v0.16.0"
  2. accessor = "v0.15.0"
  3. accessor_base = "v0.15.0"
  4. ahrocksdb < "0.2.1"
  5. alcotest-async >= "1.3.0"
  6. async_ssl = "v0.15.0"
  7. azblob
  8. bap-main
  9. bap-recipe
  10. bap-recipe-command
  11. bap-relation
  12. base_bigstring = "v0.15.0"
  13. base_quickcheck = "v0.15.0"
  14. bin_prot = "v0.15.0"
  15. bio_io >= "0.2.1" & < "0.7.0"
  16. bitvec-order
  17. caisar < "0.2.1"
  18. caisar-ir
  19. caisar-nnet
  20. caisar-onnx
  21. caisar-ovo
  22. caisar-xgboost
  23. camelsnakekebab
  24. camlimages >= "5.0.3"
  25. capnp >= "3.3.0"
  26. cohttp-async >= "2.5.2" & < "2.5.3" | >= "2.5.6" & < "3.0.0" | >= "5.0.0" & != "5.3.0" & < "6.0.0~alpha2"
  27. colibri2
  28. combinat < "3.0"
  29. cookie >= "0.1.8"
  30. core = "v0.15.0"
  31. core_kernel = "v0.15.0"
  32. crlibm < "0.3"
  33. dotenv
  34. expect_test_helpers_core = "v0.15.0"
  35. FPauth
  36. FPauth-core
  37. FPauth-responses
  38. FPauth-strategies
  39. farith
  40. feather >= "0.2.0"
  41. feather_async
  42. fftw3 >= "0.8" & < "0.8.2"
  43. fieldslib = "v0.15.0"
  44. flow_parser >= "0.159.0"
  45. fontforge-of-ocaml
  46. freetds = "0.6"
  47. GT >= "0.4.0" & < "0.5.2"
  48. gammu >= "0.9.4"
  49. genspio >= "0.0.3"
  50. gobject-introspection
  51. gsl >= "1.22.0" & < "1.24.3"
  52. h1_parser
  53. hacl
  54. hardcaml = "v0.15.0"
  55. hardcaml_circuits < "v0.16.0"
  56. hardcaml_fixed_point < "v0.16.0"
  57. hardcaml_of_verilog < "v0.16.0"
  58. hardcaml_step_testbench < "v0.16.0"
  59. hardcaml_verify < "v0.16.0"
  60. hardcaml_waveterm = "v0.15.0"
  61. hardcaml_xilinx < "v0.16.0"
  62. hardcaml_xilinx_components < "v0.16.0"
  63. higher_kinded = "v0.15.0"
  64. idd
  65. idds
  66. influxdb
  67. influxdb-async
  68. influxdb-lwt
  69. inquire < "0.2.0"
  70. int_repr < "v0.16.0"
  71. jsonaf < "v0.16.0"
  72. jst-config >= "v0.15.0" & < "v0.16.0"
  73. krb < "v0.16.0"
  74. lacaml >= "10.0.1" & < "11.0.7"
  75. lbfgs = "0.9"
  76. learn-ocaml >= "0.12"
  77. learn-ocaml-client
  78. libsvm >= "0.9.4"
  79. lilac
  80. liquid_interpreter
  81. liquid_ml
  82. liquid_parser
  83. liquid_std
  84. liquid_syntax
  85. logical
  86. matplotlib
  87. merge-fmt
  88. mesh-triangle >= "0.9.3" & < "0.9.5"
  89. mmdb >= "0.3.0"
  90. monorobot
  91. non_empty_list
  92. nuscr
  93. OCanren-ppx
  94. obeam >= "0.1.0"
  95. ocaml-r >= "0.1.0"
  96. ocamlformat >= "0.14.3" & < "0.20.0" | >= "0.21.0" & < "0.25.1"
  97. ocamlformat-lib
  98. ocamlformat-rpc < "0.20.0"
  99. opine
  100. owl >= "0.3.7"
  101. pa_ppx = "0.03"
  102. parsexp = "v0.15.0"
  103. parsexp_io = "v0.15.0"
  104. patience_diff = "v0.15.0"
  105. pcre >= "7.3.0" & < "7.4.6"
  106. posixat = "v0.15.0"
  107. postgresql >= "4.1.0" & < "4.6.2"
  108. ppx-owl-opt
  109. ppx_accessor = "v0.15.0"
  110. ppx_assert = "v0.15.0"
  111. ppx_bin_prot = "v0.15.0"
  112. ppx_cold = "v0.15.0"
  113. ppx_compare = "v0.15.0"
  114. ppx_conv_func = "v0.15.0"
  115. ppx_csv_conv = "v0.15.0"
  116. ppx_custom_printf = "v0.15.0"
  117. ppx_deriving_cad
  118. ppx_deriving_hardcaml = "v0.15.0"
  119. ppx_deriving_protocol < "0.8.1"
  120. ppx_deriving_rpc = "7.2.0"
  121. ppx_deriving_scad
  122. ppx_disable_unused_warnings < "v0.16.0"
  123. ppx_enumerate = "v0.15.0"
  124. ppx_expect >= "v0.15.0" & < "v0.16.0"
  125. ppx_fields_conv = "v0.15.0"
  126. ppx_fixed_literal = "v0.15.0"
  127. ppx_hash = "v0.15.0"
  128. ppx_here = "v0.15.0"
  129. ppx_inline_test >= "v0.15.0" & < "v0.16.0"
  130. ppx_js_style = "v0.15.0"
  131. ppx_jsonaf_conv < "v0.16.0"
  132. ppx_let = "v0.15.0"
  133. ppx_log = "v0.15.0"
  134. ppx_module_timer = "v0.15.0"
  135. ppx_open
  136. ppx_optcomp = "v0.15.0"
  137. ppx_optional = "v0.15.0"
  138. ppx_pattern_bind = "v0.15.0"
  139. ppx_protocol_conv >= "5.1.2"
  140. ppx_protocol_conv_json < "3.1.0"
  141. ppx_protocol_conv_msgpack < "3.1.0"
  142. ppx_protocol_conv_xml_light < "3.1.0"
  143. ppx_protocol_conv_yaml < "3.1.0"
  144. ppx_python = "v0.15.0"
  145. ppx_rapper >= "1.0.1"
  146. ppx_sexp_conv >= "v0.15.0" & < "v0.16.0"
  147. ppx_sexp_message = "v0.15.0"
  148. ppx_sexp_value = "v0.15.0"
  149. ppx_stable = "v0.15.0"
  150. ppx_string = "v0.15.0"
  151. ppx_type_directed_value
  152. ppx_typed_fields < "v0.16.0"
  153. ppx_typerep_conv = "v0.15.0"
  154. ppx_variants_conv = "v0.15.0"
  155. ppx_xml_conv = "v0.15.0"
  156. ppx_yojson_conv >= "v0.15.0" & < "v0.16.0"
  157. ppxlib != "0.14.0" & < "0.30.0"
  158. profunctor < "v0.16.0"
  159. protocell
  160. psyche
  161. pyml_bindgen
  162. pyre-ast
  163. pythonlib >= "v0.15.0" & < "v0.16.0"
  164. qinap
  165. range >= "0.6"
  166. record_builder = "v0.15.0"
  167. reparse = "2.1.0"
  168. routes >= "2.0.0"
  169. sanddb
  170. secp256k1 >= "0.2.5"
  171. session-cookie
  172. session-cookie-lwt
  173. sexp_grammar < "v0.16.0"
  174. sexp_pretty >= "v0.15.0" & < "v0.16.0"
  175. sexp_select = "v0.15.0"
  176. sihl < "0.1.5"
  177. spin < "0.8.0"
  178. splittable_random = "v0.15.0"
  179. sqlite3 >= "4.2.0" & < "5.0.1"
  180. stdio = "v0.15.0"
  181. string_dict = "v0.15.0"
  182. swipl
  183. tablecloth-native < "0.0.8"
  184. tdigest >= "2.2.0"
  185. tensorboard
  186. tensorflow >= "0.0.11"
  187. time_now = "v0.15.0"
  188. timmy
  189. topological_sort = "v0.15.0"
  190. torch < "v0.16.0"
  191. tqdm
  192. travesty >= "0.6.0" & < "0.8.0"
  193. twostep
  194. typerep = "v0.15.0"
  195. user-agent-parser
  196. variantslib = "v0.15.0"
  197. vcaml = "v0.15.0"
  198. virtual_dom >= "v0.15.0" & < "v0.16.0"
  199. wasmtime
  200. wseg
  201. zanuda
  202. zmq-async
  203. zmq-lwt < "5.1.0"

Conflicts

None