Giter Club home page Giter Club logo

boolean-list's Introduction

Boolean List

Convert integers to boolean lists and visa versa.

Installation (Coming soon...):

cabal install boolean-list

Example:

$ghci

Prelude>:m + Data.BooleanList 

Prelude Data.BooleanList> integerToBooleanList 12
[True,True,False,False]

Prelude Data.BooleanList> booleanListToInteger [True,True,False,False]
12

Prelude Data.BooleanList> integerToBooleanListLittleEndian 12
[False,False,True,True]

Prelude Data.BooleanList> littleEndianBooleanListToInteger [False,False,True,True]
12

Prelude Data.BooleanList> padBooleanList 5 [False,True,True]
[False,False,False,True,True]

Prelude Data.BooleanList> integerToBooleanListPadded 4 2
[False,False,True,False]

Prelude Data.BooleanList> takeIntegerFromBooleanList 2 [False,True,False,True,True]
(1,[False,True,True])

Prelude Data.BooleanList> booleanListToIntegers 2 [True,False,False,True,True]
[2,1,2]

Prelude Data.BooleanList> integersToBooleanListPadded 2 [2,1,2]
[True,False,False,True,True,False]

Prelude Data.BooleanList> booleanListToByteString [True,True,True,True,True,True,True,True,True]
"\255\191\255"

Prelude Data.BooleanList> byteStringToBooleanList (Data.ByteString.Char8.pack "\255\191\255")
[True,True,True,True,True,True,True,True,True]

Prelude Data.BooleanList> maximumIntegerForBools 7
127

Prelude Data.BooleanList> boolsRequiredForInteger 255
8

boolean-list's People

Contributors

xpika avatar

Watchers

 avatar

Forkers

matrixmike

boolean-list's Issues

serialization

function to convert

[Bool] -> Bytestring

and then

ByteString -> [Bool]

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.