1
0
mirror of https://github.com/charlienet/go-mixed.git synced 2025-07-18 08:32:40 +08:00

linked list

This commit is contained in:
2022-06-07 10:58:21 +08:00
parent 31c9b4d3e6
commit 96d24dea42
3 changed files with 222 additions and 10 deletions

11
collections/options.go Normal file
View File

@ -0,0 +1,11 @@
package collections
import "github.com/charlienet/go-mixed/locker"
type options struct {
mu locker.RWLocker
}
func emptyLocker() locker.RWLocker {
return locker.EmptyLocker
}