Kaba class Type ed
...
Syntax ed
class Type
# functions
func static pure all(type: Class&) -> Type[]
func static pure from_int(i: i32) -> Type
func static pure parse(label: string, type: Class&) -> Type
# operators
func pure __i32__() -> i32 # i32(Type) -> i32
func static __assign__(a: Type, b: Type) # Type = Type
func pure __add__(b: Type) -> Type # Type + Type -> Type
func static __iadd__(a: Type, b: Type) # Type += Type
func pure __eq__(b: Type) -> bool # Type == Type -> bool
func pure __neq__(b: Type) -> bool # Type __neq__ Type -> bool
func pure __bitand__(b: Type) -> Type # Type & Type -> Type
func pure __bitor__(b: Type) -> Type # Type | Type -> Type
# constants
const AUDIO_EFFECT: Type
const AUDIO_SOURCE: Type
const AUDIO_VISUALIZER: Type
const BEAT_SOURCE: Type
const MIDI_EFFECT: Type
const MIDI_SOURCE: Type
const PITCH_DETECTOR: Type
const PLUMBING: Type
const SIGNAL_CHAIN: Type
const STREAM: Type
const SYNTHESIZER: Type
Functions ed
- func static pure all(type: Class&) -> Type[]
- ...
- func static pure from_int(i: i32) -> Type
- ...
- func static pure parse(label: string, type: Class&) -> Type
- ...