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
@Avaq I'm guessing that since Future only ever holds a function, a Future's Type Class implementations are always the same? Oh, I forgot about ConcurrentFuture, which is not a Monad.
Some types have type class implementations only when they have specific inner types.
Some examples:
Maybe a
doesn't necessarily have a Setoid implementation, but anySetoid a => Maybe a
(for example aMaybe String
) does. This is documented here: https://github.com/sanctuary-js/sanctuary-maybeParallelHook a c
doesn't necessarily have an Applicative implementation, butParallelHook (Future a b) c
does. This is documented here: https://github.com/fluture-js/fluture-hooks#ParallelHookThe text was updated successfully, but these errors were encountered: