aboutsummaryrefslogtreecommitdiff
path: root/lib/unicode/prop/uprop_is_id_compat_math_continue.c
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-04-05 14:26:33 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-04-05 14:26:33 +0200
commit450fd004b8f8358dc46e1bcc1bceae821f7ae158 (patch)
treec3e59514c6f6a9d5d94419f025748ce7c51a9e29 /lib/unicode/prop/uprop_is_id_compat_math_continue.c
parent0abf844cd9c22623e22f462c91f380f16524c7e8 (diff)
Add boolean properties to unicode/prop.h
Diffstat (limited to 'lib/unicode/prop/uprop_is_id_compat_math_continue.c')
-rw-r--r--lib/unicode/prop/uprop_is_id_compat_math_continue.c44
1 files changed, 44 insertions, 0 deletions
diff --git a/lib/unicode/prop/uprop_is_id_compat_math_continue.c b/lib/unicode/prop/uprop_is_id_compat_math_continue.c
new file mode 100644
index 0000000..2cde8a1
--- /dev/null
+++ b/lib/unicode/prop/uprop_is_id_compat_math_continue.c
@@ -0,0 +1,44 @@
+/* This file is autogenerated by gen/prop/bool-props; DO NOT EDIT. */
+
+#include "__bsearch.h"
+#include "bitset.h"
+#include "rune.h"
+#include "unicode/prop.h"
+
+/* clang-format off */
+
+static constexpr bitset(bs, LATIN1_MAX) = {
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x02,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+};
+
+static const struct {
+ rune lo, hi;
+} lookup[] = {
+ {RUNE_C(0x002070), RUNE_C(0x002070)},
+ {RUNE_C(0x002074), RUNE_C(0x00207E)},
+ {RUNE_C(0x002080), RUNE_C(0x00208E)},
+ {RUNE_C(0x002202), RUNE_C(0x002202)},
+ {RUNE_C(0x002207), RUNE_C(0x002207)},
+ {RUNE_C(0x00221E), RUNE_C(0x00221E)},
+ {RUNE_C(0x01D6C1), RUNE_C(0x01D6C1)},
+ {RUNE_C(0x01D6DB), RUNE_C(0x01D6DB)},
+ {RUNE_C(0x01D6FB), RUNE_C(0x01D6FB)},
+ {RUNE_C(0x01D715), RUNE_C(0x01D715)},
+ {RUNE_C(0x01D735), RUNE_C(0x01D735)},
+ {RUNE_C(0x01D74F), RUNE_C(0x01D74F)},
+ {RUNE_C(0x01D76F), RUNE_C(0x01D76F)},
+ {RUNE_C(0x01D789), RUNE_C(0x01D789)},
+ {RUNE_C(0x01D7A9), RUNE_C(0x01D7A9)},
+ {RUNE_C(0x01D7C3), RUNE_C(0x01D7C3)},
+};
+
+__MLIB_DEFINE_BSEARCH_CONTAINS(lookup)
+
+bool
+uprop_is_id_compat_math_continue(rune ch)
+{
+ return ch <= LATIN1_MAX ? TESTBIT(bs, ch) : mlib_lookup_contains(ch);
+}