I.e., is
Post.title?
equivalent to
Post.title.present?
|
feedback
|
|
No.
The "attribute?" method might end up calling the same code, but it might not, and it depends on the column type that you're dealing with. The easiest way to see these not return the same value is to access a numeric column. Say you had
The code for the "?" method is in ActiveRecord::AttributeMethods.
| |||
|
feedback
|