Pointer operators
Pointers in Onyx have the following unary operators:
| Operator | Use | Works on |
|---|---|---|
&, ^ | Address-Of | pointers |
* | Dereference | pointers |
Note,
^is being phased-out in favor of&for taking the address of something.
Pointers in Onyx have the following unary operators:
| Operator | Use | Works on |
|---|---|---|
&, ^ | Address-Of | pointers |
* | Dereference | pointers |
Note,
^is being phased-out in favor of&for taking the address of something.