class Sequel::Postgres::JSONBHash

Public Instance Methods

op() click to toggle source

Wrap the JSONBHash instance in an JSONBOp, allowing you to easily use the PostgreSQL jsonb functions and operators with literal jsonbs.

    # File lib/sequel/extensions/pg_json_ops.rb
585 def op
586   JSONBOp.new(self)
587 end