class ProgressBar
- ProgressBar
- Reference
- Object
Defined in:
grab/utils/progress_bar.crConstructors
Instance Method Summary
- #complete : String
- #complete=(complete : String)
- #current : Float64
- #done
- #done?
- #inc
- #incomplete : String
- #incomplete=(incomplete : String)
- #output_stream : IO::FileDescriptor
- #output_stream=(output_stream : IO::FileDescriptor)
- #percent
- #set(n)
- #step : UInt64
- #step=(step : UInt64)
- #tick(n = @step, no_print = false)
- #total : UInt64
- #total=(total : UInt64)
- #width : UInt64
- #width=(width : UInt64)
Constructor Detail
def self.new(total : UInt64 = 100_u64, step : UInt64 = 1_u64, width : UInt64 = 100_u64, complete : String = "▓", incomplete : String = "░", use_stdout = false)
#