Class: Parse::ArrayOp

Inherits:
Object
  • Object
show all
Defined in:
lib/parse/datatypes.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(operation, objects) ⇒ ArrayOp

Returns a new instance of ArrayOp.



210
211
212
213
# File 'lib/parse/datatypes.rb', line 210

def initialize(operation, objects)
  @operation = operation
  @objects = objects
end

Instance Attribute Details

#objectsObject

Returns the value of attribute objects.



208
209
210
# File 'lib/parse/datatypes.rb', line 208

def objects
  @objects
end

#operationObject

‘{“myArray”: {“__op”: “Add”, “objects”: [“something”, “something else”] } }’



207
208
209
# File 'lib/parse/datatypes.rb', line 207

def operation
  @operation
end

Instance Method Details

#as_json(*a) ⇒ Object



227
228
229
230
231
232
# File 'lib/parse/datatypes.rb', line 227

def as_json(*a)
  {
      Protocol::KEY_OP => operation,
      Protocol::KEY_OBJECTS => @objects
  }
end

#eql?(other) ⇒ Boolean Also known as: ==

Returns:

  • (Boolean)


215
216
217
218
219
# File 'lib/parse/datatypes.rb', line 215

def eql?(other)
  self.class.equal?(other.class) &&
    operation == other.operation &&
    objects == other.objects
end

#hashObject



223
224
225
# File 'lib/parse/datatypes.rb', line 223

def hash
  operation.hash ^ objects.hash
end

#to_json(*a) ⇒ Object



234
235
236
# File 'lib/parse/datatypes.rb', line 234

def to_json(*a)
    as_json.to_json(*a)
end