Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!think.com!zaphod.mps.ohio-state.edu!pacific.mps.ohio-state.edu!linac!mp.cs.niu.edu!ux1.cso.uiuc.edu!ux2.cso.uiuc.edu!ejk From: ejk@ux2.cso.uiuc.edu (Ed Kubaitis - CSO ) Newsgroups: comp.lang.perl Subject: Re: next if C VS if(C) { next } Message-ID: <1991May22.113255.11974@ux1.cso.uiuc.edu> Date: 22 May 91 11:32:55 GMT Sender: usenet@ux1.cso.uiuc.edu (News) Organization: University of Illinois - Urbana Lines: 12 You're probably after a detailed explanation, but "Programming Perl" (p 362) advises: o Use modifiers and equivalent && and ||, instead of full-blown conditionals. Statement modifiers avoid the overhead of entering and leaving a block.... The logical operators are translated internally to the equivalent statement modifiers whenever possible. ---------------------------------- Ed Kubaitis (ejk@ux2.cso.uiuc.edu) Computing Services Office - University of Illinois, Urbana