Class: Sequel::SQL::Wrapper
- Inherits:
-
GenericExpression
- Object
- Expression
- GenericExpression
- Sequel::SQL::Wrapper
- Defined in:
- lib/sequel/sql.rb
Overview
A Wrapper
is a simple way to wrap an existing object so that it supports the Sequel DSL.
Direct Known Subclasses
Postgres::ArrayOp, Postgres::HStoreOp, Postgres::InetOp, Postgres::JSONBaseOp, Postgres::RangeOp
Instance Attribute Summary collapse
-
#value ⇒ Object
readonly
The underlying value wrapped by this object.
Instance Method Summary collapse
-
#initialize(value) ⇒ Wrapper
constructor
Set the value wrapped by the object.
Methods included from Postgres::HStoreOpMethods
Methods included from Postgres::RangeOpMethods
Methods included from Postgres::ArrayOpMethods
Methods included from Postgres::JSONOpMethods
Methods included from Postgres::InetOpMethods
Methods included from Postgres::PGRowOp::ExpressionMethods
Methods included from SubscriptMethods
Methods included from StringMethods
Methods included from PatternMatchMethods
Methods included from OrderMethods
Methods included from NumericMethods
Methods included from ComplexExpressionMethods
#extract, #sql_boolean, #sql_number, #sql_string
Methods included from CastMethods
#cast, #cast_numeric, #cast_string
Methods included from BooleanMethods
Methods included from AliasMethods
Methods inherited from Expression
#==, attr_reader, #eql?, #hash, inherited, #inspect, #lit, #sql_literal
Constructor Details
#initialize(value) ⇒ Wrapper
Set the value wrapped by the object.
1863 1864 1865 |
# File 'lib/sequel/sql.rb', line 1863 def initialize(value) @value = value end |
Instance Attribute Details
#value ⇒ Object (readonly)
The underlying value wrapped by this object.
1860 1861 1862 |
# File 'lib/sequel/sql.rb', line 1860 def value @value end |