module Torque::PostgreSQL::Arel::Operations

Public Instance Methods

cast(type, array = false) click to toggle source

Create a cast operation

# File lib/torque/postgresql/arel/operations.rb, line 9
def cast(type, array = false)
  Nodes::Cast.new(self, type, array)
end