class Sequel::Postgres::JSONHash

  1. lib/sequel/extensions/pg_json_ops.rb
Superclass: Object

Methods

Public Instance

  1. op

Public Instance methods

op()

Wrap the JSONHash instance in an JSONOp, allowing you to easily use the PostgreSQL json functions and operators with literal jsons.

[show source]
     # File lib/sequel/extensions/pg_json_ops.rb
1392 def op
1393   JSONOp.new(self)
1394 end