Skip to content

Commit

Permalink
Merge pull request #10710 from dbuenzli/utf-support
Browse files Browse the repository at this point in the history
Add UTF codec and validations support to the Stdlib
  • Loading branch information
nojb committed Oct 27, 2021
2 parents b71489f + 9108499 commit 7997b65
Show file tree
Hide file tree
Showing 13 changed files with 903 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ Working version

### Standard library:

* #10710: Add UTF tools, codecs and validations to the Uchar, Bytes and
String modules.
(Daniel Bünzli, review by Florian Angeletti, Nicolás Ojeda Bär, Alain
Frisch and Gabriel Scherer)

* #10622: Annotate `Uchar.t` with immediate attribute
(Hongbo Zhang, reivew by Gabriel Scherer and Nicolás Ojeda Bär)

Expand Down
6 changes: 6 additions & 0 deletions stdlib/.depend
Original file line number Diff line number Diff line change
Expand Up @@ -79,20 +79,23 @@ stdlib__Buffer.cmi : buffer.mli \
stdlib__Uchar.cmi \
stdlib__Seq.cmi
stdlib__Bytes.cmo : bytes.ml \
stdlib__Uchar.cmi \
stdlib__Sys.cmi \
stdlib.cmi \
stdlib__Seq.cmi \
stdlib__Int.cmi \
stdlib__Char.cmi \
stdlib__Bytes.cmi
stdlib__Bytes.cmx : bytes.ml \
stdlib__Uchar.cmx \
stdlib__Sys.cmx \
stdlib.cmx \
stdlib__Seq.cmx \
stdlib__Int.cmx \
stdlib__Char.cmx \
stdlib__Bytes.cmi
stdlib__Bytes.cmi : bytes.mli \
stdlib__Uchar.cmi \
stdlib__Seq.cmi
stdlib__BytesLabels.cmo : bytesLabels.ml \
stdlib__Bytes.cmi \
Expand All @@ -101,6 +104,7 @@ stdlib__BytesLabels.cmx : bytesLabels.ml \
stdlib__Bytes.cmx \
stdlib__BytesLabels.cmi
stdlib__BytesLabels.cmi : bytesLabels.mli \
stdlib__Uchar.cmi \
stdlib__Seq.cmi
stdlib__Callback.cmo : callback.ml \
stdlib__Obj.cmi \
Expand Down Expand Up @@ -698,6 +702,7 @@ stdlib__String.cmx : string.ml \
stdlib__Bytes.cmx \
stdlib__String.cmi
stdlib__String.cmi : string.mli \
stdlib__Uchar.cmi \
stdlib__Seq.cmi
stdlib__StringLabels.cmo : stringLabels.ml \
stdlib__String.cmi \
Expand All @@ -706,6 +711,7 @@ stdlib__StringLabels.cmx : stringLabels.ml \
stdlib__String.cmx \
stdlib__StringLabels.cmi
stdlib__StringLabels.cmi : stringLabels.mli \
stdlib__Uchar.cmi \
stdlib__Seq.cmi
stdlib__Sys.cmo : sys.ml \
stdlib__Sys.cmi
Expand Down

0 comments on commit 7997b65

Please sign in to comment.