When implementing bind, why name the second parameter k?

Viewed 109
instance Monad M where
    m >>= k = ...

Also is there a name for functions which are used as this second argument to bind?

1 Answers

Answered in the comments

I'd guess that k stands for something like "kontinue with the kontinuation k

Related