I see the fancy code for using a trie to lookup codepoints with certain properties, but either it doesn't work for general_category, or I'm not using it right.
TwitterCldr::Shared::CodePoint.code_points_for_property("general_category", "Lu").count
# => 0
TwitterCldr::Shared::CodePoint.properties.property_values_for("general_category")
# => ["Cc", "Cf", "Co", "Cs", "Ll", "Lm", "Lo", "Lt", "Lu", "Mc", "Me", "Mn", "Nd", "Nl", "No", "Pc", "Pd", "Pe", "Pf", "Pi", "Po", "Ps", "Sc", "Sk", "Sm", "So", "Zl", "Zp", "Zs"]
(PS: Thank you for this awesome gem, a real service to the community)
I see the fancy code for using a trie to lookup codepoints with certain properties, but either it doesn't work for
general_category, or I'm not using it right.(PS: Thank you for this awesome gem, a real service to the community)