wangjia184 / sortedset

An ordered collection implemented in Golang with O(log(N)) time complexity on adding / searching / removing

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is this thread safe?

mofadeyunduo opened this issue · comments

commented

as the title is, is this thread safe?

No, it is not a lock-free data structrue. you have to use mutex

commented

thanks