From 74f6ea94eae45c8fb89a23cc94802e57ce279a84 Mon Sep 17 00:00:00 2001 From: xuri Date: Wed, 19 Jan 2022 00:51:09 +0800 Subject: ref #1054, breaking change for the column and row's iterator This removed 3 exported functions: `TotalCols`, `CurrentCol` and `CurrentRow` --- rows.go | 5 ----- 1 file changed, 5 deletions(-) (limited to 'rows.go') diff --git a/rows.go b/rows.go index 8072079..8702f93 100644 --- a/rows.go +++ b/rows.go @@ -79,11 +79,6 @@ type Rows struct { token xml.Token } -// CurrentRow returns the row number that represents the current row. -func (rows *Rows) CurrentRow() int { - return rows.seekRow -} - // Next will return true if find the next row element. func (rows *Rows) Next() bool { rows.seekRow++ -- cgit v1.2.1