[This is preliminary documentation and is subject to change.]
Parse a string representation of an Erlang function call
"Module:Function(Arg1, ..., ArgN)" to a 3-element (Module, Function, Arguments) tuple
Namespace: NFX.ErlangAssembly: NFX.Erlang (in NFX.Erlang.dll) Version: 3.0.0.1 (3.0.0.1)
public static Tuple<ErlAtom, ErlAtom, ErlList> ToErlMFA(
this string fmt,
params Object[] args
)
public static Tuple<ErlAtom, ErlAtom, ErlList> ToErlMFA(
this string fmt,
params Object[] args
)
<ExtensionAttribute>
Public Shared Function ToErlMFA (
fmt As String,
ParamArray args As Object()
) As Tuple(Of ErlAtom, ErlAtom, ErlList)
<ExtensionAttribute>
Public Shared Function ToErlMFA (
fmt As String,
ParamArray args As Object()
) As Tuple(Of ErlAtom, ErlAtom, ErlList)
public:
[ExtensionAttribute]
static Tuple<ErlAtom, ErlAtom, ErlList^>^ ToErlMFA(
String^ fmt,
... array<Object^>^ args
)
public:
[ExtensionAttribute]
static Tuple<ErlAtom, ErlAtom, ErlList^>^ ToErlMFA(
String^ fmt,
... array<Object^>^ args
)
static member ToErlMFA :
fmt : string *
args : Object[] -> Tuple<ErlAtom, ErlAtom, ErlList>
static member ToErlMFA :
fmt : string *
args : Object[] -> Tuple<ErlAtom, ErlAtom, ErlList>
Return Value
Type:
Tuple ErlAtom,
ErlAtom,
ErlList Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
String. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).