Georgiy Korneev

Results 2 comments of Georgiy Korneev

You are right! `difference m m` should throw error if an unexpected `Empty` is encountered. I'am not aware about specific features of GHC inlining, but AFAIU `toList.go` cannot be inlined...

Pardon, for better performance the `List.top` should be defined as ``` Haskell top Empty = [] top (Internal l r _ _) next = go l (go r next) top...