Class: Set

Inherits:
Object show all
Defined in:
lib/report_print/core_extensions.rb

Instance Method Summary collapse

Instance Method Details

#report_print(rp) ⇒ Object



77
78
79
80
81
82
83
84
85
86
87
# File 'lib/report_print/core_extensions.rb', line 77

def report_print(rp)
  rp.inline("") do
    rp.write("Set", color: :yellow)
    rp.write("[")
  end
  rp.multiline(after: "]", separator: ",") do
    to_a.each do |item|
      rp.rp(item)
    end
  end
end