Lifts given list to syntax tree of this list, applying supplied function to each of its elements. The function is used here to lift elements of list, so we can build entire syntax trees from them.
Lifts given list to syntax tree of this list, applying supplied function to each of its elements. The function is used here to lift elements of list, so we can build entire syntax trees from them.
public static PExpr Lift(list,Func1);
public static PExpr Lift(option,Func1);
Creates syntax tree of given number (expression building it)
public static PExpr Lift(int);
public static PExpr Lift(string);
Macros Class | Nemerle.Compiler Namespace