class Sequel::Postgres::JSONBArray

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

Methods

Public Instance

  1. op

Public Instance methods

op()

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

[show source]
    # File lib/sequel/extensions/pg_json_ops.rb
744 def op
745   JSONBOp.new(self)
746 end