Skip to content

.\typecons.axec

model Any

An enumeration for any type. A type constructor for any type.

def from_i32(v: i32): Any

Creates an Any from an i32.

def from_f32(v: f32): Any

Creates an Any from an f32.

def from_string(v: string): Any

Creates an Any from a string.

def from_bool(v: bool): Any

Creates an Any from a bool.

def from_ptr(v: ref void): Any

Creates an Any from a pointer.