I've found the -@ operator redefinition in Rails/ActiveSupport:
https://github.com/rails/rails/blob/master/activesupport/lib/active_support/duration.rb#L33
Can you tell me what it is mean?
|
I've found the -@ operator redefinition in Rails/ActiveSupport: https://github.com/rails/rails/blob/master/activesupport/lib/active_support/duration.rb#L33 Can you tell me what it is mean? |
|||||||||
|
|
|
|||
|
|
|
I think it defines what happens when the object is negated, for example:
The y object needs to have a -@ operator defined. |
||||
|
|
|
It simply returns a negated duration object, where the value is negated and all the values of parts are also negated. |
|||
|
|