Continue; for loop

Hello,
Is there a node that acts like Continue; for a for loop?
I can’t seem to find one.
I’ve just been using a branch node as a substitute for now.

As far as I can think, the way that loops work in Blueprint wouldn’t allow for ‘Continue’ the way it works in programming languages. Branching and doing nothing is probably the cleanest thing you can do. If you wanted to though, you can recreate the forloop macro with a continue input that would simply do nothing, but that would be messy having an execution line running back to the for node

Edit: Even with the continue node, it wouldn’t halt execution of the rest of the loop, obviously

You can use a forloopwithbreak which would continue until broken or finished.

Thanks that’s what I was thinking.
Branching pretty much serves the same purpose which is kind of cool.