From: Jay Levitt Date: 2007-08-29T08:30:05+09:00 Subject: idiomatic way to assign if not nil? I know I can use "a ||= b" to assign b to a if a is nil. But what about an equivalent to a = b if b Does that exist in a DRYer form?