Provide an iterator to simplify iteration over some isl collections.
Since these types do not natively support iteration, they have to be converted
to an list first by the caller, but can then be used in a ranged for loop:
isl::set S; for (auto SubSet : S.get_basic_set_list ()) { // ... }