tighter loop
This commit is contained in:
parent
e7a770bac2
commit
ce850eb0cb
23
fun.go
23
fun.go
|
@ -79,27 +79,18 @@ func reverbolate(honks []*Honk) {
|
||||||
|
|
||||||
func osmosis(honks []*Honk, userid int64) []*Honk {
|
func osmosis(honks []*Honk, userid int64) []*Honk {
|
||||||
zwords := getzwords(userid)
|
zwords := getzwords(userid)
|
||||||
collapse := false
|
j := 0
|
||||||
for i, h := range honks {
|
outer:
|
||||||
|
for _, h := range honks {
|
||||||
for _, z := range zwords {
|
for _, z := range zwords {
|
||||||
if z.MatchString(h.Precis) || z.MatchString(h.Noise) {
|
if z.MatchString(h.Precis) || z.MatchString(h.Noise) {
|
||||||
honks[i] = nil
|
continue outer
|
||||||
collapse = true
|
|
||||||
break
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
honks[j] = h
|
||||||
|
j++
|
||||||
}
|
}
|
||||||
if collapse {
|
return honks[0:j]
|
||||||
j := 0
|
|
||||||
for i := 0; i < len(honks); i++ {
|
|
||||||
if honks[i] != nil {
|
|
||||||
honks[j] = honks[i]
|
|
||||||
j++
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return honks[0:j]
|
|
||||||
}
|
|
||||||
return honks
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func shortxid(xid string) string {
|
func shortxid(xid string) string {
|
||||||
|
|
Loading…
Reference in New Issue