@@ -61,6 +61,87 @@ public static void Register(NodelistFunctionDefinition function)
61
61
| function | NodelistFunctionDefinition | The function. |
62
62
63
63
64
+ ### Register(ValueFunctionDefinition function, Type functionType)
65
+
66
+ Registers a new function implementation, allowing it to be parsed.
67
+
68
+ #### Declaration
69
+
70
+ ``` c#
71
+ public static void Register (ValueFunctionDefinition function , Type functionType )
72
+ ```
73
+
74
+ | Parameter | Type | Description |
75
+ | ---| ---| ---|
76
+ | function | ValueFunctionDefinition | The function. |
77
+ | functionType | Type | The type of the function. |
78
+
79
+
80
+ ### Register(LogicalFunctionDefinition function, Type functionType)
81
+
82
+ Registers a new function implementation, allowing it to be parsed.
83
+
84
+ #### Declaration
85
+
86
+ ``` c#
87
+ public static void Register (LogicalFunctionDefinition function , Type functionType )
88
+ ```
89
+
90
+ | Parameter | Type | Description |
91
+ | ---| ---| ---|
92
+ | function | LogicalFunctionDefinition | The function. |
93
+ | functionType | Type | The type of the function. |
94
+
95
+
96
+ ### Register(NodelistFunctionDefinition function, Type functionType)
97
+
98
+ Registers a new function implementation, allowing it to be parsed.
99
+
100
+ #### Declaration
101
+
102
+ ``` c#
103
+ public static void Register (NodelistFunctionDefinition function , Type functionType )
104
+ ```
105
+
106
+ | Parameter | Type | Description |
107
+ | ---| ---| ---|
108
+ | function | NodelistFunctionDefinition | The function. |
109
+ | functionType | Type | The function type. |
110
+
111
+
112
+ ### RegisterLogicalFunction()
113
+
114
+ Registers a new function implementation, allowing it to be parsed.
115
+
116
+ #### Declaration
117
+
118
+ ``` c#
119
+ public static void RegisterLogicalFunction ()
120
+ ```
121
+
122
+
123
+ ### RegisterNodelistFunction()
124
+
125
+ Registers a new function implementation, allowing it to be parsed.
126
+
127
+ #### Declaration
128
+
129
+ ``` c#
130
+ public static void RegisterNodelistFunction ()
131
+ ```
132
+
133
+
134
+ ### RegisterValueFunction()
135
+
136
+ Registers a new function implementation, allowing it to be parsed.
137
+
138
+ #### Declaration
139
+
140
+ ``` c#
141
+ public static void RegisterValueFunction ()
142
+ ```
143
+
144
+
64
145
### TryGet(string name, out IPathFunctionDefinition function)
65
146
66
147
Gets a function implementation by name.
0 commit comments