class Console::Output::Null
A null output that does nothing.
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/output/null.rb, line 11 def initialize(...) end
Create a new null output.
Public Instance Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/output/null.rb, line 20 def call(...) end
Do nothing.
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/output/null.rb, line 15 def last_output self end
The last output is always self.