mirror of
1
Fork 0
forgejo/routers/web/repo
Jason Song 477a1cc40e
Improve utils of slices (#22379)
- Move the file `compare.go` and `slice.go` to `slice.go`.
- Fix `ExistsInSlice`, it's buggy
  - It uses `sort.Search`, so it assumes that the input slice is sorted.
- It passes `func(i int) bool { return slice[i] == target })` to
`sort.Search`, that's incorrect, check the doc of `sort.Search`.
- Conbine `IsInt64InSlice(int64, []int64)` and `ExistsInSlice(string,
[]string)` to `SliceContains[T]([]T, T)`.
- Conbine `IsSliceInt64Eq([]int64, []int64)` and `IsEqualSlice([]string,
[]string)` to `SliceSortedEqual[T]([]T, T)`.
- Add `SliceEqual[T]([]T, T)` as a distinction from
`SliceSortedEqual[T]([]T, T)`.
- Redesign `RemoveIDFromList([]int64, int64) ([]int64, bool)` to
`SliceRemoveAll[T]([]T, T) []T`.
- Add `SliceContainsFunc[T]([]T, func(T) bool)` and
`SliceRemoveAllFunc[T]([]T, func(T) bool)` for general use.
- Add comments to explain why not `golang.org/x/exp/slices`.
- Add unit tests.
2023-01-11 13:31:16 +08:00
..
activity.go
attachment.go
blame.go
branch.go Use context parameter in models/git (#22367) 2023-01-09 11:50:54 +08:00
cherry_pick.go
commit.go Use context parameter in models/git (#22367) 2023-01-09 11:50:54 +08:00
compare.go Use context parameter in models/git (#22367) 2023-01-09 11:50:54 +08:00
download.go Use context parameter in models/git (#22367) 2023-01-09 11:50:54 +08:00
editor.go
editor_test.go
find.go
http.go
http_test.go
issue.go Improve utils of slices (#22379) 2023-01-11 13:31:16 +08:00
issue_content_history.go
issue_dependency.go
issue_label.go
issue_label_test.go
issue_lock.go
issue_stopwatch.go
issue_test.go
issue_timetrack.go
issue_watch.go
lfs.go Use context parameter in models/git (#22367) 2023-01-09 11:50:54 +08:00
main_test.go
middlewares.go
migrate.go
milestone.go
packages.go Use dynamic package type list (#22263) 2022-12-29 00:31:54 +01:00
patch.go
projects.go
projects_test.go
pull.go Use context parameter in models/git (#22367) 2023-01-09 11:50:54 +08:00
pull_review.go
release.go Add Feed for Releases and Tags (#21696) 2022-12-21 15:06:26 -06:00
release_test.go
render.go
repo.go Move `convert` package to services (#22264) 2022-12-29 10:57:15 +08:00
search.go
setting.go
setting_protected_branch.go Use context parameter in models/git (#22367) 2023-01-09 11:50:54 +08:00
settings_test.go
tag.go Use context parameter in models/git (#22367) 2023-01-09 11:50:54 +08:00
topic.go
treelist.go
view.go Use context parameter in models/git (#22367) 2023-01-09 11:50:54 +08:00
view_test.go
webhook.go Improve utils of slices (#22379) 2023-01-11 13:31:16 +08:00
wiki.go Use context parameter in models/git (#22367) 2023-01-09 11:50:54 +08:00
wiki_test.go