Represents a cast of an SQL
expression to a specific type.
Public Class methods
new(expr, type)
Set the expression and type for the cast
[show source]
# File lib/sequel/sql.rb 1250 def initialize(expr, type) 1251 @expr = expr 1252 @type = type 1253 freeze 1254 end