Function Types

The yace function types consists of:

Their Yace-Intermediate-Representation follows below.

class yace.ir.functiontypes.Function(*, doc: ~yace.ir.base.Docstring, sym: str, key: str = 'function_decl', ant: dict | None = <factory>, ret: ~yace.ir.datatypes.Typespec, parameters: ~typing.List[~yace.ir.functiontypes.Parameter] = [])

Function declarations

key: str
model_config: ClassVar[ConfigDict] = {}

Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].

parameters: List[Parameter]
ret: Typespec
class yace.ir.functiontypes.FunctionPointer(*, doc: ~yace.ir.base.Docstring, sym: str, key: str = 'function_pointer_decl', ant: dict | None = <factory>, ret: ~yace.ir.datatypes.Typespec, parameters: ~typing.List[~yace.ir.functiontypes.Parameter] = [])

Function pointer declarations by convention of:

typedef int (*sym_)(int, int);

Note..

key: str
model_config: ClassVar[ConfigDict] = {}

Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].

parameters: List[Parameter]
ret: Typespec
class yace.ir.functiontypes.Parameter(*, typ: ~yace.ir.datatypes.Typespec | ~typing.Literal['array_tspec', 'bool_tspec', 'char_tspec', 'enum_tspec', 'f32_tspec', 'f64_tspec', 'function_pointer_tspec', 'i16_tspec', 'i32_tspec', 'i64_tspec', 'i8_tspec', 'i_tspec', 'ih_tspec', 'il_tspec', 'ill_tspec', 'isize_tspec', 'pointer_tspec', 'record_tspec', 'string_tspec', 'u16_tspec', 'u32_tspec', 'u64_tspec', 'u8_tspec', 'u_tspec', 'ul_tspec', 'ull_tspec', 'us_tspec', 'usize_tspec', 'void_pointer_tspec', 'void_tspec'], sym: str, key: str = 'parameter_decl', ant: dict | None = <factory>)

Function parameter

key: str
model_config: ClassVar[ConfigDict] = {}

Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].