ActionsLike0
Bug #9041
closedPlease add alias "starts_with?" to class String
Description
Hi.
We can do these:
FileUtils.touch 'test' # => ["test"]
File.exist? 'test' # => true
File.exists? 'test' # => true
'test'.start_with? 't' # => true
However, we can not use .starts_with?
'test'.starts_with? 't' NoMethodError: undefined method `starts_with?' for "test":String
I propose that, for proper english, and consistency with the duality of File.exist? and File.exists?
to also add alias starts_with? so that we can use proper english.
The proper english way to query such a question would be:
"Does the word abc start with an a?"
and in short form as factual, affirmative statement:
"abc starts with a."
whereas this here would be not proper english:
"abc start with a."
Updated by naruse (Yui NARUSE) over 11 years ago
- Status changed from Open to Rejected
ActionsLike0