diff options
author | Tom Whatmore <tom@whatmore.me> | 2020-06-20 07:12:14 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2020-06-30 12:15:19 +0100 |
commit | c3c2284841b8dda0236d3366932a3d555e1ead55 (patch) | |
tree | a80c8f4abf4aa8e1f22dcaaaf15ccdfe5a28a9ef | |
parent | 068a2168d19a57c462e67f0070aa9f42691ffe1b (diff) | |
download | gleam_stdlib-c3c2284841b8dda0236d3366932a3d555e1ead55.tar.gz gleam_stdlib-c3c2284841b8dda0236d3366932a3d555e1ead55.zip |
Gleam format
-rw-r--r-- | src/gleam/utf_codepoint.gleam | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gleam/utf_codepoint.gleam b/src/gleam/utf_codepoint.gleam index f894ad3..f1d0fbb 100644 --- a/src/gleam/utf_codepoint.gleam +++ b/src/gleam/utf_codepoint.gleam @@ -1,7 +1,8 @@ import gleam/result /// A UtfCodepoint is the integer representation of a valid UTF codepoint -pub type UtfCodepoint = UtfCodepoint +pub type UtfCodepoint = + UtfCodepoint external fn int_to_utf8_codepoint(Int) -> UtfCodepoint = "gleam_stdlib" "identity" |