We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 841fd5d commit c2a00bfCopy full SHA for c2a00bf
1 file changed
doc/oper.md
@@ -89,7 +89,7 @@ user.MyNameSpace::MyFunc
89
```
90
91
### Operator: `.`
92
-- Code block access operator.
+- Object access operator.
93
94
```cpp
95
console.println.log("Hi!")
@@ -129,6 +129,27 @@ MyTag<-new[int]myvar=1
129
new[int]myvar=1
130
131
132
+### Operator: `=>`
133
+- Memory copy operator used to create entities or objects from virtual blueprints.
134
+
135
+```cpp
136
+int myBluePrint() virtual
137
+{
138
+ //foo
139
+ return int 4
140
+}
141
142
+//class
143
+class MyFuncs
144
145
+ private myFunc=>myBluePrint
146
147
148
+object MyObj=MyFuncs
149
+// This will do foo and return 4:
150
+MyFuncs.myFunc()
151
+```
152
153
### Operator: `|`
154
155
- Bitwise OR.
0 commit comments