http://qs321.pair.com?node_id=924970


in reply to Re^3: Hashes of Hashes of Arrays? Is it possible?
in thread Hashes of Hashes of Arrays? Is it possible?

Jim, Is there a Perl specific control break? Or should I just permutate various loop control statements like unless, continue etc.?
  • Comment on Re^6: Hashes of Hashes of Arrays? Is it possible?

Replies are listed 'Best First'.
Re^7: Hashes of Hashes of Arrays? Is it possible?
by Jim (Curate) on Sep 09, 2011 at 02:55 UTC
    Is there a Perl specific control break?

    No. A control break is a general structured programming technique. It's not a feature of a specific programming language.

    Or should I just permutate various loop control statements like unless, continue etc.?

    Control breaks are implemented using if-then(-else) constructs inside and after an ordered-record-processing loop. Marshall explains the control break technique nicely in his reply to your inquiry.