Issue #9043 has been updated by headius (Charles Nutter). Target version changed from 2.1.0 to current: 2.2.0 I'd like to see this get into 2.2, and it sounds like Matz wants it too. ---------------------------------------- Feature #9043: Add String#f method as shortcut for #freeze https://bugs.ruby-lang.org/issues/9043#change-43943 Author: headius (Charles Nutter) Status: Open Priority: Normal Assignee: matz (Yukihiro Matsumoto) Category: core Target version: current: 2.2.0 We have String#b to create a binary-encoded String, and we have the "f" suffix (going away, hopefully) and the "literal".freeze optimization (#8992). I think it would be reasonable to add String#f as a shorter method for producing a frozen string. If String#f is added the "literal".freeze optimization could be dropped in favor of "literal".f. This would provide something very close to the original "literal"f syntax but in a backward-compatibility-friendly way (class String; alias f freeze; end). -- http://bugs.ruby-lang.org/