Files
gitlab.nvim/cmd/utils.go
Harrison (Harry) Cramer 152c55fd57 Feat: Notes (Non-Linked Comments) (#52)
Adds support for notes. These are comments that are not linked to specific lines of code in the MR.
2023-08-31 21:36:40 -04:00

11 lines
137 B
Go

package main
func Contains[T comparable](elems []T, v T) int {
for i, s := range elems {
if v == s {
return i
}
}
return -1
}