Represents an access modifier.

See also:

Values

APublic

Public access modifier, grants access from anywhere.

See also:

APrivate

Private access modifier, grants access to class and its sub-classes only.

See also:

AStatic

Static access modifier.

ADynamic

Dynamic (re-)bindable access modifier.

See also:

AInline

Inline access modifier. Allows expressions to be directly inserted in place of calls to them.

See also:

AMacro

Macro access modifier. Allows expression macro functions. These are normal functions which are executed as soon as they are typed.

AFinal

Final access modifier. For functions, they can not be overridden. For variables, it means they can be assigned to only once.

AExtern

Extern access modifier.

AAbstract

Abstract access modifier.

AOverload

Overload access modifier.