Git Product home page Git Product logo

bitfields's People

Contributors

ufcpp avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

bitfields's Issues

CR LF

There are mixed new lines in generated source codes.

Constructor?

    public DoubleView(Bit52 faction, Bit11 exponent, Bit1 Sign)
    {
        Value = 0;
        Value |= (fraction & FractionMask) << FractionShift)
        Value |= (fraction & ExponentMask) << ExponentShift)
        Value |= (fraction & SignMask) << SignShift)
    }

Possible to create BitX with invalid value (out of range)

This works correctly:

Bit3 b3 = 99;

I got the expected error: "Constant value '99' cannot be converted to a 'Bit3'"

but this passes:

Bit3 b3 = 98 + 1;

Admittedly is strange to use the '+' on a Bit... I don't if is possible to catch this error too or not...

No enum members

Exception thrown when attempting to generate bit-fields without any enum members

BitX.Value should not be public

To make BitX more as number Value should not be public but private / internal, any conversion should happen with cast operations.

No "generate bitfield" in light bulb

Using the "usual" sample code:

    struct DoubleView
    {
        enum BitFields
        {
            Fraction = 11,
            Exponent = 52,
            Sign = 1,
        }
    }

In the light bulb is only suggested to move the type in a new file nothing else!

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.