package base

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

Install

Dune Dependency

Authors

Maintainers

Sources

v0.17.0.tar.gz
md5=6a3504bf4179654606f2785c057981e4
sha512=5828bfdad7e80183c4aa8b52e6ab06cc17c9f15cfbffc88827db8f8973a064813236d60b01358f838e58f2fea1f4499e6a7676bf081da443c1fb8a019d9fe7be

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: 03 May 2024

README

README.org

* Base

[[https://github.com/janestreet/base/actions][https://github.com/janestreet/base/actions/workflows/workflow.yml/badge.svg]]

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 =Stdlib= library,
which re-exports them all through the toplevel name =Stdlib=:
=Stdlib.String=, =Stdlib.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.

** Base coding rules

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

These rules are:

- Opening the =Stdlib= module is not allowed. Inside Base, the OCaml
  stdlib is shadowed and accessible through the =Stdlib= module. We
  forbid opening =Stdlib= so that we know exactly where things come
  from.
- =Stdlib.Foo= modules cannot be aliased, one must use =Stdlib.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 =Stdlib.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 (5)

  1. dune-configurator
  2. dune >= "3.11.0"
  3. sexplib0 >= "v0.17" & < "v0.18"
  4. ocaml_intrinsics_kernel
  5. ocaml >= "5.1.0"

Dev Dependencies

None

  1. ahrocksdb < "0.2.1"
  2. alcotest-async >= "1.3.0"
  3. arrayjit
  4. azblob
  5. bap-main
  6. bap-recipe
  7. bap-recipe-command
  8. bap-relation
  9. bio_io >= "0.2.1"
  10. bitvec-order
  11. caisar-ir
  12. caisar-nnet
  13. caisar-onnx
  14. caisar-ovo
  15. caisar-xgboost
  16. camelsnakekebab
  17. camlimages >= "5.0.3"
  18. capnp >= "3.3.0"
  19. cohttp-async >= "2.5.2" & < "2.5.3" | >= "2.5.6" & < "3.0.0" | >= "5.0.0"
  20. combinat < "3.0"
  21. cookie >= "0.1.8"
  22. crlibm < "0.3"
  23. cucumber
  24. dotenv
  25. FPauth
  26. FPauth-core
  27. FPauth-responses
  28. FPauth-strategies
  29. farith
  30. feather >= "0.2.0"
  31. feather_async
  32. fftw3 >= "0.8" & < "0.8.2"
  33. flow_parser >= "0.159.0"
  34. fontforge-of-ocaml
  35. freetds = "0.6"
  36. GT >= "0.4.0" & < "0.5.2"
  37. gammu >= "0.9.4"
  38. genspio >= "0.0.3"
  39. gobject-introspection
  40. gsl >= "1.22.0" & < "1.24.3"
  41. h1_parser
  42. hacl
  43. idd
  44. idds
  45. influxdb
  46. influxdb-async
  47. influxdb-lwt
  48. inquire < "0.2.0"
  49. lacaml >= "10.0.1" & < "11.0.7"
  50. lbfgs = "0.9"
  51. learn-ocaml >= "0.12"
  52. learn-ocaml-client
  53. libsvm >= "0.9.4"
  54. lilac
  55. liquid_interpreter
  56. liquid_ml
  57. liquid_parser
  58. liquid_std
  59. liquid_syntax
  60. logical
  61. matplotlib
  62. merge-fmt
  63. mesh-triangle >= "0.9.3" & < "0.9.5"
  64. mmdb >= "0.3.0"
  65. monorobot
  66. neural_nets_lib
  67. non_empty_list
  68. nuscr
  69. obeam >= "0.1.0"
  70. ocaml-r >= "0.1.0"
  71. ocamlformat >= "0.14.3" & < "0.20.0" | >= "0.21.0" & < "0.25.1"
  72. ocamlformat-lib
  73. ocamlformat-rpc < "0.20.0"
  74. opine
  75. owl >= "0.3.7"
  76. pa_ppx = "0.03"
  77. pcre >= "7.3.0" & < "7.4.6"
  78. postgresql >= "4.1.0" & < "4.6.2"
  79. ppx-owl-opt
  80. ppx_deriving_cad
  81. ppx_deriving_protocol < "0.8.1"
  82. ppx_deriving_rpc = "7.2.0"
  83. ppx_deriving_scad
  84. ppx_open
  85. ppx_protocol_conv = "5.1.3"
  86. ppx_protocol_conv_json < "3.1.0"
  87. ppx_protocol_conv_msgpack < "3.1.0"
  88. ppx_protocol_conv_xml_light < "3.1.0"
  89. ppx_protocol_conv_yaml < "3.1.0"
  90. ppx_rapper >= "1.0.1"
  91. ppxlib != "0.14.0" & < "0.28.0"
  92. protocell
  93. psyche
  94. pyml_bindgen < "0.4.1"
  95. pyre-ast
  96. qinap
  97. range >= "0.6"
  98. reparse = "2.1.0"
  99. routes >= "2.0.0"
  100. SZXX >= "4.1.0"
  101. safemoney >= "0.2.0"
  102. sanddb
  103. secp256k1 >= "0.2.5"
  104. session-cookie
  105. session-cookie-lwt
  106. spin < "0.8.0"
  107. sqlite3 >= "4.2.0" & < "5.0.1"
  108. swipl
  109. tablecloth-native < "0.0.8"
  110. tensorboard
  111. tensorflow >= "0.0.11"
  112. timmy
  113. torch < "v0.16.0"
  114. tqdm
  115. travesty >= "0.8.0"
  116. twostep
  117. user-agent-parser
  118. wasmtime
  119. wseg
  120. zanuda
  121. zmq-async
  122. zmq-eio
  123. zmq-lwt < "5.1.0"

Conflicts

None

OCaml

Innovation. Community. Security.