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
When using an overloaded function with the group_by methods the compiler isn't happy. We get a long string of errors which are relatively easy to identify since this message repeats:
albatross::RegressionDataset<Feature>::group_by(<unresolved overloaded function type>)
but it'll be buried in a long string of template candidate failures which makes it tough to spot.
Ideally we would:
Support overloaded functions (not sure if that's possible)
Give a more informative error message. (this could contain a suggestion to wrap the desired function in a lambda with the specific type desired).
The text was updated successfully, but these errors were encountered:
When using an overloaded function with the
group_by
methods the compiler isn't happy. We get a long string of errors which are relatively easy to identify since this message repeats:but it'll be buried in a long string of template candidate failures which makes it tough to spot.
Ideally we would:
The text was updated successfully, but these errors were encountered: