You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now that most optypes cannot be const-constructed anymore (see #1723), we are almost always constructing type rows from vectors.
The only cases where we use the const-constructed type_row! macro now is for empty typerows or rarely when using type_row![Type::UNIT].
The extra overhead of the Cow is probably not worth it anymore. We should try wrapping a Vec directly instead (and benchmarking the changes!).
The text was updated successfully, but these errors were encountered:
Now that most optypes cannot be const-constructed anymore (see #1723), we are almost always constructing type rows from vectors.
The only cases where we use the const-constructed
type_row!
macro now is for empty typerows or rarely when usingtype_row![Type::UNIT]
.The extra overhead of the Cow is probably not worth it anymore. We should try wrapping a
Vec
directly instead (and benchmarking the changes!).The text was updated successfully, but these errors were encountered: