[ruby-core:73733] [Ruby trunk Feature#12046] Allow attr_reader :foo? to define instance method foo? for accessing @foo

From: shevegen@...
Date: 2016-02-07 14:00:44 UTC
List: ruby-core #73733
Issue #12046 has been updated by Robert A. Heiler.


Yay! Sometimes things just take a while. :)

----------------------------------------
Feature #12046: Allow attr_reader :foo? to define instance method foo? for accessing @foo
https://bugs.ruby-lang.org/issues/12046#change-56920

* Author: Kenta Murata
* Status: Open
* Priority: Normal
* Assignee: Yukihiro Matsumoto
----------------------------------------
Now we should write an accessor method of a boolean instance variable like

```ruby
def foo?
  @foo
end
```

But I want to write it by using attr_reader like:

```ruby
attr_reader :foo?
```



-- 
https://bugs.ruby-lang.org/

Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>

In This Thread

Prev Next