Giter VIP home page Giter VIP logo

arithmetic-types's Introduction

๐Ÿ–ฉ arithmetic-types

allows you to perform basic arithmetic and bitwise operations on TypeScript numeric types

type assistance demo

DISCLAIMER: This project is highly experimental and primarily exists to demonstrate what's possible at the limits of TS's type system. It seriously strains the TS compiler and may even crash your IDE.

Available Types

Type JavaScript "equivalent"
Add<A, B> A + B
Sub<A, B> A - B
BitShiftLeft<N> N << 1
BitShiftRight<N> N >> 1
And<A, B> A & B (bitwise)
Or<A, B> A ๏ฝœ B (bitwise)

Limitations

All these types are restricted to working with positive integers that can be represented with 6 or fewer bits (i.e., 0 - 63). The size restriction is due only to performance. I originally planned to support a full byte, but even that was melting the TypeScript compiler; Webstorm was constantly crashing. With that said, the code would easily scale when the TypeScript compiler can better handle deeply nested types.

I also had a working implementation of multiplication, but also for performance reasons, I had to comment it out. Check out the source if you're interested.

Author

Tanner Nielsen [email protected]

Website | GitHub

arithmetic-types's People

Contributors

tannerntannern avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

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.