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
We have some Word64-indexed types, and having to scatter fromIntegral all over to compensate outweighs the convenience of using like ifor_ f xs over for_ f (xs `zip` [0..]) in a smaller number spots.
WDYT about replacing instance FunctorWithIndex Int [] with instance Integral i => FunctorWithIndex i [], and so on?
The text was updated successfully, but these errors were encountered:
We have some
Word64
-indexed types, and having to scatterfromIntegral
all over to compensate outweighs the convenience of using likeifor_ f xs
overfor_ f (xs `zip` [0..])
in a smaller number spots.WDYT about replacing
instance FunctorWithIndex Int []
withinstance Integral i => FunctorWithIndex i []
, and so on?The text was updated successfully, but these errors were encountered: