Giter Club home page Giter Club logo

go-bitset's Introduction

go-bitset is an efficient implementation of a map between unsigned, 32-bit or 64-bit integers and boolean values. It provides methods for setting, clearing, flipping, and testing individual integers.

go-bitset also provides set intersection, union, difference, complement, and symmetric operations, as well as tests to check whether any, all, or no bits are set, and the ability to query the bitset's length and number of set bits.

Bitsets are expanded automatically to the size of the largest bit set.

== Installation

go get github.com/hewenyu/go-bitset

== Documentation

go doc github.com/pmylund/go-bitset or http://go.pkgdoc.org/github.com/hewenyu/go-bitset

== Usage

import "github.com/pmylund/go-bitset"

b := bitset.New32(10000) b.Set(1000) if b.Test(1000) { fmt.Println("Bit 1000 is set!") } b.Clear(1000) b.Set(10)

ob := bitset.New32(0) // ob expands automatically ob.Set(10)

if b.Intersection(ob).Count() > 1 { fmt.Println("The two sets intersect!") }

oob := bitset.New64(0) oob.Set(1000000000)

go-bitset is based on bitset by Will Fitzgerald.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.