mirror of
https://github.com/tursom/GoCollections.git
synced 2025-02-12 10:40:15 +08:00
9 lines
102 B
Go
9 lines
102 B
Go
package lang
|
|
|
|
type (
|
|
BitSet interface {
|
|
BitLength() int
|
|
SetBit(bit int, up bool) (old bool)
|
|
}
|
|
)
|