0x4a52466c696e74 il y a 1 an
Parent
commit
d0ce885e14
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      containers/concurrent/list.go

+ 2 - 2
containers/concurrent/list.go

@@ -229,9 +229,9 @@ func (s *List) Search(val interface{}) *Element {
 	return nil
 }
 
-func (s *List) Each(call func(any) bool) {
+func (s *List) Each(call func(*Element) bool) {
 	for f := s.First(); f != nil; f = f.Next() {
-		if !call(f.Val()) {
+		if !call(f) {
 			return
 		}
 	}