Skip to content
forked from boljen/go-bitmap

Package bitmap implements (thread-safe) bitmap functions and abstractions

License

Notifications You must be signed in to change notification settings

go-xman/go-bitmap

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bitmap (Go)

Package bitmap implements (thread-safe) bitmap functions and abstractions

Install

go get github.com/boljen/go-bitmap

Documentation

See godoc

Example

package main

import (
    "fmt"
    "github.com/boljen/go-bitmap"
)

func main() {
    bm := bitmap.New(100)
    bm.Set(0, true)
    fmt.Println(bm.Get(0))
}

License

MIT

About

Package bitmap implements (thread-safe) bitmap functions and abstractions

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 100.0%