You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//AUTO lets as annotate the obscure auto call. The expected usage is at places where we know very well what type we are working with, but are in no need ofexplicitly writting its full path.
#define AUTO(t) auto
//MAKE creates an identity method which is meant to act as a constructor e.g. MAKE(node); will create method which may be called like make_node({1,2,3,"string member"})