I cannot find in the book ho to break out of a nested loop using a label.
outer:
for x in container_of_containers {
for y in x {
if test_y(y) {
break outer;
}
}
}
Is there some rusty way? I feel I am missing something simple about the syntax