method
group
v1_8_7_330 -
Show latest stable
- Class:
PrettyPrint::SingleLine
group(indent=nil, open_obj='', close_obj='', open_width=nil, close_width=nil)public
No documentation available.
# File lib/prettyprint.rb, line 362
def group(indent=nil, open_obj='', close_obj='', open_width=nil, close_width=nil)
@first.push true
@output << open_obj
yield
@output << close_obj
@first.pop
end