Wrap the receiver in an JSONOp so you can easily use the SQLite json functions and operators with it.
# File lib/sequel/extensions/sqlite_json_ops.rb, line 255 def sqlite_json_op JSONOp.new(self) end
Wrap the receiver in an JSONBOp so you can easily use the SQLite jsonb functions and operators with it.
# File lib/sequel/extensions/sqlite_json_ops.rb, line 261 def sqlite_jsonb_op JSONBOp.new(self) end