diff options
-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" |