-
-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
glib: Bind g_unichar
APIs
#1146
Conversation
84173f4
to
2a96562
Compare
Regarding the CI failures:
|
You only need to add them on plain functions and trait declarations, not trait implementations.
Something for @bilelmoussaoui I guess :) |
Changes since last push:
As far as I can tell, CI is now failing because the aliases don't exist in the trait impl |
I rewrote the trait so that CI would be happy, seems to have worked |
Some notes: * names were made "rustier", e.g.:` g_unichar_istitle` became `is_titlecase` * I did not include APIs that were already availabe through Rust's char
I'm not sure if documentation for these methods can be automatically generated given these are manually defined as methods on an extension trait.
I think I got all of the ones not offered by the stdlib
Closes #763
Some notes:
g_unichar_istitle
becameis_titlecase