I was wondering if anyone has any insights on how to make a function that will take a list and only return the terms that can be generated in x amount of time.
For instance, I have a function that takes something like 10 minutes to return only a few terms. Instead of guessing how many terms I'd be able to generate (with take x), I'd like to just feed in an infinite list into my inefficient function and have a separate function decide when to time out.
So something like this: [5,7,10] = takeUntilTime (10 sec) . inefficientFunction $ [1..]
I'm pretty new to haskell, but I think I can write that function to just check the timer after each new term is generated and stopping if the time has elapsed.
However, what if the 4th term takes an eternity? Would there be a way to stop the inefficientFunction from finishing the generation of that 4th term even though it has already started?
I don't have high hopes for a straightforward answer, but I appreciate any intuition on this. Thanks.