Skip to content

Instantly share code, notes, and snippets.

@jdegoes
Created September 6, 2011 08:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jdegoes/1197017 to your computer and use it in GitHub Desktop.
Save jdegoes/1197017 to your computer and use it in GitHub Desktop.
// Does NOT work
aToB >>> bToC
// Does NOT work
aToB.`>>>`(bToC)(ActorMCategory[M](monad))
// WORKS
mab[({type λ[α, β]=ActorM[M, α, β]})#λ, A, B](aToB) >>> bToC
// WORKS
ActorMCategory[M].compose(bToC, aToB)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment