var

Synopsis

template <class T>
struct var
{
  // unspecified
};

Description

Wrapper for variables in expressions. The class parameter, T is the identity of the variable. The tag of the variables is var_tag.

#include <mpllibs/metamonad/var.hpp>

Example

struct my_var_id;

typedef var<my_var_id> my_var;

[up]