Seunghyeon Nam

Results 2 comments of Seunghyeon Nam

```haskell analyzeDrop :: Int -> Stream a -> IO () analyzeDrop k (Append xs _ _) | k >= length xs = throw DropIndexOverflow | k > fromIntegral (maxBound ::...

> Good catch! Here is a concrete test case that demonstrates the bug in action: > > ```haskell > {-# LANGUAGE NoImplicitPrelude #-} > module Main (main) where > >...