ExprTake Method
Returns a new Expr that has the same head but only the first n elements of this Expr
(or last n elements if n is negative). Works like the Wolfram Language function Take.
Namespace: Wolfram.NETLinkAssembly: Wolfram.NETLink (in Wolfram.NETLink.dll) Version: 2.0.0.0
public Expr Take(
int n
)
Public Function Take (
n As Integer
) As Expr
public:
Expr^ Take(
int n
)
member Take :
n : int -> Expr
- n Int32
- The number of elements to take from the beginning (or end if n is negative).
ExprThe shortened Expr.