If I recall a function that is expected to throw an error, from a catch block of an try statement, does that catch block being 'attached' to the try block gurantee that when the function throws an error a second time it will be caught by the first and only try block?
@Moschops: I agree thats probably better.
However, my code uses 're:try' which is just plain neat looking.
Anyways, what my code is doing is throwing an error on an expected event. Such as the end user getting bored with going through every iteration of a permutation. (actually subset iterator) which is taking a really long time. I have this recursive code that works really great, except if the list is big. So when the user presses a specified button, it will skip fro wherever it is the the for loop of which ever call on that stack that is at, will skip from the i'th iteration of the highest up call, to the i+1, which is nice, because i don't really need EVERY COMBINATION, but I do need to ensure that it goes through a sufficient # of them to generate a hard enough permutation. but as it turns out, by keeping it on the ith iteration of the highest level loop for too long, i'm not getting much variety, as every subset its going through so far has the same first elements, and subsequently is not being fast enough. This way I can wait for a little while, then skip to the next level, then wait for a while, then skip etc.