RethinkDB::QueryResult
Inherits Struct / Value / Object
Constructors
new(pull : JSON::PullParser)
Sourcenew(raw : Type)
SourceInstance methods
==(other : QueryResult)
Source==(other)
Returns true if this struct is equal to other.
Both structs' instance vars are compared to each other. Thus, two structs are considered equal if each of their instance variables are equal. Subclasses should override this method to provide specific equality semantics.
struct Point
def initialize(@x : Int32, @y : Int32)
end
end
p1 = Point.new 1, 2
p2 = Point.new 1, 2
p3 = Point.new 3, 4
p1 == p2 # => true
p1 == p3 # => false
as_a
Sourceas_a?
Sourceas_bool
Sourceas_bool?
Sourceas_f
Sourceas_f32
Sourceas_f32?
Sourceas_f?
Sourceas_h
Sourceas_h?
Sourceas_i
Sourceas_i64
Sourceas_i64?
Sourceas_i?
Sourceas_nil
Sourceas_s
Sourceas_s?
Sourceas_time
Sourceas_time?
Sourceinspect(io)
Sourcekeys
Sourceraw
Sourceraw=(raw : Type)
Sourcesize
Sourceto_reql
Sourceto_s(io)
Sourcetransformed(time_format, group_format, binary_format)
Source