package reason

  1. Overview
  2. Docs
Reason: Syntax & Toolchain for OCaml

Install

Dune Dependency

Authors

Maintainers

Sources

reason-3.16.0.tbz
sha256=47b0e43a7d348e2a850658ab4bec5a4fbbb9fd4ff3ec8a1c1816511558c5364e
sha512=0d8dbe33ac17b765ea018522910a333831fec278ae4da25ba039ce4d2d8152f9b2fbba5b40c453241bf4323e55e0dc070170b04caa35742c6e33a7f726feafb3

doc/src/reason.refmt-lib/eol_convert.ml.html

Source file eol_convert.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
open Eol_detect

let lf_to_crlf s =
  let rec loop sz =
    match String.index sz '\n' with
    | exception Not_found -> sz
    | idx ->
      let l = String.sub sz 0 idx ^ "\r\n" in
      let length = String.length sz in
      l ^ loop (String.sub sz (idx + 1) (length - idx - 1))
  in
  loop s

let get_formatter output_channel eol =
  let f = Format.formatter_of_out_channel output_channel in
  let out_functions = Format.pp_get_formatter_out_functions f () in
  let out_string s p n =
    match eol with
    | LF -> out_functions.out_string s p n
    | CRLF ->
      let str = String.sub s p n in
      let str = lf_to_crlf str in
      out_functions.out_string str 0 (String.length str)
  in
  let new_functions = { out_functions with out_string } in
  Format.pp_set_formatter_out_functions f new_functions;
  f
OCaml

Innovation. Community. Security.