I'm looking for an operator that is like skip(int) but also has a condition and only skips the first item if if satisfies a condition (empty list in my case). If the item is not empty, continue normally, don't try to skip any more items.
Is there a way to do this with current operators?
I'm looking for an operator that is like skip(int) but also has a condition and only skips the first item if if satisfies a condition (empty list in my case). If the item is not empty, continue normally, don't try to skip any more items.
Is there a way to do this with current operators?