-
Notifications
You must be signed in to change notification settings - Fork 82
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
[FEATURE] Make alphabets trivial #3038
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Codecov ReportBase: 98.21% // Head: 98.21% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## master #3038 +/- ##
==========================================
- Coverage 98.21% 98.21% -0.01%
==========================================
Files 275 274 -1
Lines 12244 12204 -40
==========================================
- Hits 12026 11986 -40
Misses 218 218
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
0632de1
to
d678fe0
Compare
d678fe0
to
dcd6552
Compare
72d9768
to
98a2510
Compare
98a2510
to
6931d95
Compare
|
6931d95
to
d0011c9
Compare
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.
Improvements look great!
std::vector
optimizes assignments tostd::copy
(basically memcpy) iff the value_type is trivial. If not, it will usestd::unintialized_copy
which will use placement-new and is around 2-3 times slower.