-
-
Notifications
You must be signed in to change notification settings - Fork 3
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
Add benchmarking for get_first_emoji #73
Conversation
benches/my_benchmark.rs
Outdated
let emojies = vec![ | ||
"not an emoji", | ||
"\u{3299}\u{3300}", | ||
"🟠", | ||
"", | ||
"🟠y", | ||
"🍏", | ||
"lorem", | ||
"😀", | ||
]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wouldn't it make more sense to load in all of the valid emojis? or one of each range and variant, like everything from single character emoji to composite emoji with gender, skin- and hair-colour?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah I think it makes sense to add more emojies from each range.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fine now?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bigger composite emoji are still missing, like 👨👩👧👧 and 👸🏾 (grouped/joined emoji & gender + skin tone)
No description provided.