summaryrefslogtreecommitdiff
path: root/sortFunc.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-10 04:22:53 -0600
committerJeff Carr <[email protected]>2025-01-10 04:22:53 -0600
commit88e4359cdec41a29750586202b15fa2dabb89e55 (patch)
tree26d39b4ac00baea9649afdb5f541d4306845361e /sortFunc.go
parent25ae7fca5c09e41e869a2a1aeed65215e41a41f0 (diff)
cleanup as much junk as possiblev0.0.39
Diffstat (limited to 'sortFunc.go')
-rw-r--r--sortFunc.go12
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