module Sequel::SQL::BitwiseMethods

  1. lib/sequel/sql.rb
Parent: SQL

This defines the bitwise methods: &, |, ^, ~, <<, and >>. Because these methods overlap with the standard +BooleanMethods methods+, and they only make sense for integers, they are only included in NumericExpression.

:a.sql_number & :b # "a" & "b"
:a.sql_number | :b # "a" | "b"
:a.sql_number ^ :b # "a" ^ "b"
:a.sql_number << :b # "a" << "b"
:a.sql_number >> :b # "a" >> "b"
~:a.sql_number # ~"a"

Methods

Public Instance

  1. ~

Public Instance methods

~ ()

Do the bitwise compliment of the self

~:a.sql_number # ~"a"
[show source]
# File lib/sequel/sql.rb, line 266
def ~
  NumericExpression.new(:'B~', self)
end