This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; OCaml stuff | |
| ; locate opam's site-lisp | |
| (setq opam-share | |
| (replace-regexp-in-string "\n$" "" | |
| (shell-command-to-string "opam var share 2> /dev/null"))) | |
| (add-to-list 'load-path (expand-file-name "emacs/site-lisp" opam-share)) | |
| ; merlin | |
| (require 'merlin) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (*--------------------------------------------------------------------------- | |
| Copyright (c) 2025 The opam programmers. All rights reserved. | |
| SPDX-License-Identifier: LGPL-2.1-only WITH OCaml-LGPL-linking-exception | |
| ---------------------------------------------------------------------------*) | |
| (* Usage: opam2json < opam | |
| opam switch export - | opam2json | |
| Compile with: | |
| ocamlfind ocamlopt -linkpkg -package opam-core,opam-format \ | |
| opam2json.ml -o opam2json *) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ocaml | |
| (*--------------------------------------------------------------------------- | |
| Copyright (c) 2025 Daniel C. Bünzli. All rights reserved. | |
| SPDX-License-Identifier: ISC | |
| ---------------------------------------------------------------------------*) | |
| #use "topfind" | |
| #require "b0.std" | |
| #require "b0.kit" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| _b0 | |
| _build |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (*--------------------------------------------------------------------------- | |
| Copyright (c) 2025 The bigbytes programmers. All rights reserved. | |
| SPDX-License-Identifier: ISC | |
| ---------------------------------------------------------------------------*) | |
| (** Bigarrays of bytes. | |
| {b Note.} Getter and setters raise [Invalid_argument] on out of | |
| bounds errors. Functions that encode 8-bit or 16-bit integers | |
| represented by [int] values truncate their input their least |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (*--------------------------------------------------------------------------- | |
| Copyright (c) 2018 Daniel C. Bünzli. All rights reserved. | |
| SPDX-License-Identifier: ISC | |
| ---------------------------------------------------------------------------*) | |
| (** Integer types. | |
| [Ints] provides types for specifying sized integer types not | |
| supported by the {!Stdlib}. It also provides bitwise conversion | |
| functions and safe, magnitude preserving, conversions. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| _b0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| _b0 |
NewerOlder