-
Notifications
You must be signed in to change notification settings - Fork 31
Open
Labels
Description
streaming/src/Streaming/Internal.hs
Lines 703 to 708 in 0721e4b
| | n <= 0 = Return stream | |
| | otherwise = case stream of | |
| Return r -> Return (Return r) | |
| Effect m -> Effect (fmap (loop n) m) | |
| Step fs -> case n of | |
| 0 -> Return (Step fs) |
This last line looks unreachable.