文件名称:abool:用于更干净的Go代码的原子布尔库,针对性能进行了优化,但易于使用
文件大小:5KB
文件格式:ZIP
更新时间:2024-05-04 12:15:11
go golang synchronization atomic clean-code
傻瓜 :light_bulb: 用于Go的Atomic布尔软件包,已针对性能进行了优化,但易于使用。 专为更清洁的代码而设计。 用法 import "github.com/tevino/abool" cond := abool . New () // default to false cond . Set () // Sets to true cond . IsSet () // Returns true cond . UnSet () // Sets to false cond . IsNotSet () // Returns true cond . SetTo ( any ) // Sets to whatever you want cond . SetToIf ( new , old ) /
【文件预览】:
abool-master
----.gitignore(266B)
----go.mod(40B)
----LICENSE(1KB)
----bool.go(2KB)
----README.md(2KB)
----bool_test.go(5KB)