Methods
- #
- B
- I
- N
Attributes
[R] | args | |
[R] | block | |
[R] | klass |
Class Public methods
new(klass, args, block)
Link
Source: show
# File rhino/rhino/lib/rhino/sieve.rb 19 def initialize(klass, args, block) 20 @klass = klass 21 @args = args 22 @block = block 23 end
Instance Public methods
==(other)
Link
Source: show
# File rhino/rhino/lib/rhino/sieve.rb 27 def ==(other) 28 case other 29 when Sieve 30 klass == other.klass 31 when Class 32 klass == other 33 end 34 end
build(app)
Link
Source: show
# File rhino/rhino/lib/rhino/sieve.rb 44 def build(app) 45 klass.new(app, *args, &block) 46 end