Code Monkey home page Code Monkey logo

logicgatesincpp's Introduction

LOGIC GATES IN C++

Using the Composite Design Pattern

Logic gates

  • AND
  • NAND
  • NOR
  • NOT
  • OR
  • XNOR
  • XOR

Usage example

#include "...\LogicGateLibrary.h"

Numeric<> five(5); // Simply the number 5 which can be used as an input for a gate
Numeric<> eight(8); // Simply the number 8 which can be used as an input for a gate

Numeric<> uChar_six(6); // Unsigned Char is the default typename for all of the classes' templates
Numeric<unsigned int> uInt_six(6); // All bitwise compatible types work (Note: Double/Float are not bitwise compatible)

Or<>(&five, &six).operation(); // The 'operation' function must be called in the outermost logic gate. See also:
And<>(&Or<>(&five, &six), &eight).operation(); // Inputs can also be logic gates, not just numbers

And<>(&eight, &five, &six, ...).operation(); // Logic gates are not limited by the number of inputs:

Or<>(&Numeric<>(5), &Numeric<>(9)).operation(); // Returns 13

logicgatesincpp's People

Contributors

shayaxelrod 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.