class Xlsxrb::StreamWriter

High-performance streaming writer that outputs XLSX files with O(1) constant memory.

@example Streaming write using StreamWriter

Xlsxrb.write("output.xlsx") do |writer|
  writer.sheet("Sales") do |s|
    s.row(["Item", "Price"])
    s.row(["Coffee", 3.50])
  end
end

@api public