Top Level Namespace
Defined Under Namespace
Modules: CE
Instance Method Summary collapse
- #p(*arg) ⇒ Object
-
#print(*arg) ⇒ Object
override Kernel module functions.
- #printf(*arg) ⇒ Object
- #putc(*arg) ⇒ Object
- #puts(*arg) ⇒ Object
Instance Method Details
#p(*arg) ⇒ Object
10 11 12 |
# File 'lib/color_echo/override.rb', line 10 def p(*arg) CE.task.call(*arg) end |
#print(*arg) ⇒ Object
override Kernel module functions
6 7 8 |
# File 'lib/color_echo/override.rb', line 6 def print(*arg) CE.task.call(*arg) end |
#printf(*arg) ⇒ Object
18 19 20 |
# File 'lib/color_echo/override.rb', line 18 def printf(*arg) CE.task.call(*arg) end |