|
|
|
|
|
by reuben364
2227 days ago
|
|
One thing I realized that seq'ing too many things might be bad for performance. As I understand it, foldr1 (\x y -> ((x `par` delay 1) `seq` y)) $ map pure [1..]
Would require more and more comparisons over time. Is there some sort of codensity like trick that you can do? Or is this something the user of the library would worry about if it came to that. Or just have a redundant API. |
|