Class: DataMapper::Query::Operator
- Inherits:
-
Object
- Object
- DataMapper::Query::Operator
- Extended by:
- Equalizer
- Includes:
- Extlib::Assertions
- Defined in:
- lib/dm-core/query/operator.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#operator ⇒ Object
readonly
private
TODO: document.
-
#target ⇒ Object
readonly
private
TODO: document.
Instance Method Summary collapse
-
#inspect ⇒ Object
private
TODO: document.
Methods included from Equalizer
Instance Attribute Details
#operator ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
TODO: document
22 23 24 |
# File 'lib/dm-core/query/operator.rb', line 22 def operator @operator end |
#target ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
TODO: document
18 19 20 |
# File 'lib/dm-core/query/operator.rb', line 18 def target @target end |
Instance Method Details
#inspect ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
TODO: document
26 27 28 |
# File 'lib/dm-core/query/operator.rb', line 26 def inspect "#<#{self.class.name} @target=#{target.inspect} @operator=#{operator.inspect}>" end |