We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64ed932 commit 4cc1163Copy full SHA for 4cc1163
lib/unicode_guards.ex
@@ -153,7 +153,6 @@ defmodule Unicode.Guards do
153
defguard is_printable(codepoint)
154
when is_integer(codepoint) and match?(codepoint, "[[:printable:]]")
155
156
-
157
@doc false
158
# Replaced by `is_graph/1`.
159
defguard is_visible(codepoint)
@@ -181,7 +180,6 @@ defmodule Unicode.Guards do
181
180
defguard is_blank(codepoint)
182
when is_integer(codepoint) and match?(codepoint, "[[:blank:]]")
183
184
185
@doc """
186
Guargs where a UTF8 codepoint is a printing character.
187
@@ -191,5 +189,4 @@ defmodule Unicode.Guards do
191
189
"""
192
190
defguard is_print(codepoint)
193
when is_integer(codepoint) and match?(codepoint, "[[:print:]]")
194
195
end
0 commit comments