Matches bracketed expressions or lists depending on number of arguments.

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

Syntax

C#
public IGrammarMatcher AddListOrBracketMatcher(
	string open,
	string close,
	string sep
)
Visual Basic (Declaration)
Public Function AddListOrBracketMatcher ( _
	open As String, _
	close As String, _
	sep As String _
) As IGrammarMatcher
Visual C++
public:
IGrammarMatcher^ AddListOrBracketMatcher(
	String^ open, 
	String^ close, 
	String^ sep
)

Parameters

open
Type: System..::.String
symbol for opening brace
close
Type: System..::.String
symbol for closing brace
sep
Type: System..::.String
symbol for argument separator

Return Value

the corresponding IGrammarMatcher

See Also