瀏覽代碼

in progress

0x4a52466c696e74 1 年之前
父節點
當前提交
23b664717b
共有 1 個文件被更改,包括 8 次插入0 次删除
  1. 8 0
      containers/concurrent/list.go

+ 8 - 0
containers/concurrent/list.go

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