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
I am not sure we should use IntoIterator<Item = Expr> for every field with 6 fields. This will produce a version of the compiled function for every combination, which IMO adds an unnecessary compile time and binary size.
IntoIterator is more relevant when we want to avoid an extra allocation; these are very small vectors.
I am not sure we should use
IntoIterator<Item = Expr>
for every field with 6 fields. This will produce a version of the compiled function for every combination, which IMO adds an unnecessary compile time and binary size.IntoIterator
is more relevant when we want to avoid an extra allocation; these are very small vectors.Originally posted by @jorgecarleitao in #334 (comment)
The text was updated successfully, but these errors were encountered: