# File lib/spreadsheet/excel/writer/worksheet.rb, line 173 def write_cell type, row, idx, *args xf_idx = @workbook.xf_index @worksheet.workbook, row.format(idx) data = [ row.idx, # Index to row idx, # Index to column xf_idx, # Index to XF record (➜ 6.115) ].concat args write_op opcode(type), data.pack(binfmt(type)) end