ExprInsert Method
Returns a new Expr that has the same head but with e inserted into position n (counted from the
end if n is negative). Works like the Wolfram Language function Insert.
Namespace: Wolfram.NETLinkAssembly: Wolfram.NETLink (in Wolfram.NETLink.dll) Version: 2.0.0.0
public Expr Insert(
Expr e,
int n
)
Public Function Insert (
e As Expr,
n As Integer
) As Expr
public:
Expr^ Insert(
Expr^ e,
int n
)
member Insert :
e : Expr *
n : int -> Expr
- e Expr
- The element to insert.
- n Int32
- The index at which to perform the insertion (counted from the end if n is negative).
ExprThe new Expr.