1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-11 00:02:28 +08:00

doc: update copyonwritelist doc

This commit is contained in:
dudaodong
2023-08-22 10:26:39 +08:00
parent 1a7e0e8792
commit 27777eecc0
2 changed files with 2 additions and 5 deletions

View File

@@ -1,7 +1,6 @@
# CopyOnWriteList
CopyOnWriteList is a thread-safe list implementation that uses go slicing as its base.
. When writing, a new slice is copied and assigned to the original slice when writing is complete.When reading, the original slice is read directly.
CopyOnWriteList is a thread-safe list implementation that uses go slicing as its base. When writing, a new slice is copied and assigned to the original slice when writing is complete. When reading, the original slice is read directly.
## 源码