I am trying to translate some Julia routine into C (C#, C++). I fail to understand the particular line
n == n0 && (n+=1; continue)
in the following loop.
ret1, ret2, n = 1, 0, 0
while n < m
n == n0 && (n+=1; continue)
ret1 *= z+n
ret2 += 1/(z+n)
n += 1
end
How is the increment function before exiting the loop.