![]() |
Zen
A cross-platform functional programming language
|
Defines the output format for types. More...
Public Types | |
| enum | T { None, Import, InParam, ClosureMember } |
The enumeration values. More... | |
Defines the output format for types.
This is typically used to change type qualifiers. Mapping for writing in-param:
qtype => in-param
const int& x => const int& x;
const int x => const int& x;
int x => const int& x;
int& x => int& x;
Deduce whether in-param is a const-ref based on above logic. The in-param should be a const-ref for all qtypes other than a nonconst-ref.
| enum T |