Class Sequel::SQL::DelayedEvaluation
In: lib/sequel/sql.rb
Parent: GenericExpression

Represents a delayed evaluation, encapsulating a callable object which returns the value to use when called.

Methods

new  

Attributes

callable  [R]  A callable object that returns the value of the evaluation when called.

Public Class methods

Set the callable object

[Source]

      # File lib/sequel/sql.rb, line 1197
1197:       def initialize(callable)
1198:         @callable = callable
1199:       end

[Validate]