diff options
Diffstat (limited to 'sortFunc.go')
| -rw-r--r-- | sortFunc.go | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sortFunc.go b/sortFunc.go index 2bcff18..869a2ab 100644 --- a/sortFunc.go +++ b/sortFunc.go @@ -61,7 +61,7 @@ func (msg *MsgName) iterNext(w io.Writer) { fmt.Fprintln(w, "") } -func (pf *File) iterAll(w io.Writer) { +func (pf *File) selectAllFunc(w io.Writer) { var BASES string = pf.Bases.Name var BASE string = pf.Base.Name var LOCK string = pf.Bases.Lockname @@ -82,7 +82,7 @@ func (pf *File) iterAll(w io.Writer) { fmt.Fprintln(w, "") } -func (pf *File) iterSortBy(w io.Writer) { +func (pf *File) sortByFunc(w io.Writer) { var BASES string = pf.Bases.Name var BASE string = pf.Base.Name @@ -193,7 +193,7 @@ func (pf *File) appendUnique(w io.Writer) { fmt.Fprintln(w, "") } -func (pf *File) iterReplace(w io.Writer) { +func (pf *File) replaceFunc(w io.Writer) { var MSG string = pf.Bases.Name var BASE string = pf.Base.Name var LOCK string = pf.Bases.Lockname @@ -217,7 +217,7 @@ func (pf *File) iterReplace(w io.Writer) { } } -func (pf *File) iterDelete(w io.Writer) { +func (pf *File) deleteFunc(w io.Writer) { var MSG string = pf.Bases.Name var LOCK string = pf.Bases.Lockname @@ -240,7 +240,7 @@ func (pf *File) iterDelete(w io.Writer) { } // this tries to return the deleted one but is wrong/gives warning if mutex lock is in struct -func (pf *File) iterDeleteWithCopy(w io.Writer) { +func (pf *File) deleteWithCopyFunc(w io.Writer) { var MSG string = pf.Bases.Name var BASE string = pf.Base.Name var LOCK string = pf.Bases.Lockname @@ -266,7 +266,7 @@ func (pf *File) iterDeleteWithCopy(w io.Writer) { } } -func (pf *File) iterFind(w io.Writer) { +func (pf *File) findFunc(w io.Writer) { var MSG string = pf.Bases.Name var BASE string = pf.Base.Name var LOCK string = pf.Bases.Lockname |
