Skip to content

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

License

Notifications You must be signed in to change notification settings

boljen/go-bitmap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 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

Releases

No releases published

Packages

No packages published

Languages