@@ -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