Giter Club home page Giter Club logo

bit_flagger's Introduction

BitFlagger

Hex version API docs CI

Manipulate bit flags in Elixir.

Usage

# Let's say we want to remember certain days of week as a single integer
iex> days_of_week = [:sunday, :monday, :tuesday, :wednesday, :thursday, :friday, :saturday]

# The number of bit flags
iex> size = 7

# All the days of the week are 127, no day of the week is the value 0
iex> state = 0b0000000
0

iex> BitFlagger.parse(state, size)
[false, false, false, false, false, false, false]

# Turn on the flags at index 1 (Monday) and 3 (Wednesday)
iex> state = state |> BitFlagger.on(1) |> BitFlagger.on(3)
10

iex> BitFlagger.parse(state, size)
[false, true, false, true, false, false, false]

# Turn off the flag at index 1 (Monday)
iex> state = BitFlagger.off(state, 1)
8

iex> BitFlagger.parse(state, size)
[false, false, false, true, false, false, false]

# We can easily make it human readable
iex> Enum.zip(days_of_week, BitFlagger.parse(state, size))
[
  sunday: false,
  monday: false,
  tuesday: false,
  wednesday: true,
  thursday: false,
  friday: false,
  saturday: false
]

Installation

Add bit_flagger to your list of dependencies in mix.exs:

def deps do
  [
    {:bit_flagger, "~> 0.1.0"}
  ]
end

Documentation can be found at https://hexdocs.pm/bit_flagger.

bit_flagger's People

Contributors

mnishiguchi avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Forkers

torifukukaiou

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.