Parser ParseMFA Method NFX Class Library

[This is preliminary documentation and is subject to change.]

Parses a string representation of an Erlang function call in the form
Module:Function(Arg1, ..., Arg)
or
Module:Function(Arg1, ..., Arg).

Namespace: NFX.Erlang.Internal
Assembly: NFX.Erlang (in NFX.Erlang.dll) Version: 3.0.0.1 (3.0.0.1)
Syntax

internal static Tuple<ErlAtom, ErlAtom, ErlList> ParseMFA(
	string fmt,
	ref int pos,
	ref int argc,
	params Object[] args
)

Parameters

fmt
Type: OnlineSystem String
string to parse
pos
Type: OnlineSystem Int32 
starting index
argc
Type: OnlineSystem Int32 
argument number
args
Type:  OnlineSystem Object 
optional arguments

Return Value

Type: OnlineTuple ErlAtom, ErlAtom, ErlList 
A 3-element tuple containing Module, Function, Arguments
See Also