Definition(String, Term, Entry, String, Boolean) Constructor
Definition of the function/variable.
Namespace: SMath.ManagerAssembly: SMath.Manager (in SMath.Manager.dll) Version: 1.2.9018.0
public Definition(
string name,
Term[] variables,
Entry result,
string description,
bool isSpecial
)
Public Sub New (
name As String,
variables As Term(),
result As Entry,
description As String,
isSpecial As Boolean
)
public:
Definition(
String^ name,
array<Term^>^ variables,
Entry^ result,
String^ description,
bool isSpecial
)
new :
name : string *
variables : Term[] *
result : Entry *
description : string *
isSpecial : bool -> Definition
Parameters
- name String
-
Name of the function/variable.
- variables Term
-
If function, then a list of variables should be defined.
- result Entry
-
Value of the function/variable.
- description String
-
Description of the function/variable.
- isSpecial Boolean
-
Indicates whether value of the global variable/function defined in run-time (used in very special cases).