Git Product home page Git Product logo

c--11-variant's Introduction

Basic C++11 template variant type.

zlib license and all that goodness

I make use of tagged unions quite a lot, and I wanted a variant type to handle all the boilerplate I write, at least during prototyping, so I did this weekend project that essentially taught me that C++'s template metaprogramming sucks.  In my opinion, Clay (http://claylabs.com/clay/) is a lot nicer for this type of thing, but it already has a variant type built-in.

I might try and get rid of the use of std::type_index in favor of a length-dependent type-unique integer type using more template metaprogramming magic, but std::type_index works for now.

Usage example:

#include "Variant.hpp"
#include <iostream>

int main(int argc, const char * argv[])
{
	typedef Variant<const char*, int, float> V;
	V value(float(100));
	V value2 = value;
	value = V(int(0));
	if(value.is<int>())
	{
		std::cout << value.as<int>() << std::endl;
	}
	else if(value.is<float>())
	{
		std::cout << value.as<float>() << std::endl;
	}
	else if(value.is<const char*>())
	{
		std::cout << value.as<const char*>() << std::endl;
	}
	return 0;
}

c--11-variant's People

Contributors

od0x0 avatar

Watchers

James Cloos avatar chchen 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.