Function which allows array access using the a[3] notation on left and right hand side. The first element is indexed with 1.
CopyC#
a=[4,3,2,1];
a[2];   // Returns 2
a[2]=5; // Sets the 2nd element of a to 5. So a is now [4,5,2,1]
b=[[1,2,3],[4,5,6]];
b[2][3]; // returns 6
b[2][3]=7; // sets 3rd element of 2nd row to 7 (only works with the configurable parser)

Namespace:  SingularSys.Jep.Functions
Assembly:  Jep (in Jep.dll) Version: 1.1.0.0 (1.0.0)

Syntax

C#
public class Ele : PostfixMathCommand, ILValue
Visual Basic (Declaration)
Public Class Ele _
	Inherits PostfixMathCommand _
	Implements ILValue
Visual C++
public ref class Ele : public PostfixMathCommand, 
	ILValue

Inheritance Hierarchy

System..::.Object
  SingularSys.Jep.Functions..::.PostfixMathCommand
    SingularSys.Jep.Functions..::.Ele

See Also