From: Ken Kunz Date: 2006-09-28T12:40:05+09:00 Subject: Re: Injecting truth > How about (1..5).map { |x| x < 3 }.all? This approach is nice and concise... but I still prefer "truth injection" for my actual code scenario. In my real code, the block is multiple lines, and for clarity I don't love the idea of tacking a method call on the end of a multi-line block. Plus I just like saying "injecting truth" :) > ... obviously your way works, but the &&= isn't neccesary ... Thanks for the tip. -Ken