module Sequel::SQLite::JSONOpMethods

def sqlite_json_op

json functions and operators with it.
Wrap the receiver in an JSONOp so you can easily use the SQLite
def sqlite_json_op
  JSONOp.new(self)
end

def sqlite_jsonb_op

jsonb functions and operators with it.
Wrap the receiver in an JSONBOp so you can easily use the SQLite
def sqlite_jsonb_op
  JSONBOp.new(self)
end