Structure#
Operation |
Class |
---|---|
{} (Structure constructor) |
|
.() (Structure destructor) |
|
.l (Projection) |
|
_ with .l (Functional update) |
- class ansys.scadeone.core.swan.StructConstructor(group: Group, type: PathIdentifier | None = None)#
Bases:
Expression
Structure expression, with optional type for cast to structure from a group: { group } [[ : path_id]].
- static set_owner(owner: Self, children: Self | Iterable[Self])#
Helper to set owner as the owner of each item in the Iterable items.
- property is_protected: bool#
Tell if a construct item is syntactically protected with some markup and is stored as a string (without the markup).
- property module: ModuleBase#
Module containing the item.
- Returns:
ModuleBase: module container, see
ModuleBody
andModuleInterface
- property owner: Self#
Owner of current Swan construct.
- property type: PathIdentifier | None#
Structure type.
- class ansys.scadeone.core.swan.StructDestructor(group: PathIdentifier, expr: Expression)#
Bases:
Expression
Group creation: path_id group (expr).
- static set_owner(owner: Self, children: Self | Iterable[Self])#
Helper to set owner as the owner of each item in the Iterable items.
- property expr: Expression#
Expression.
- property group: PathIdentifier#
Group type.
- property is_protected: bool#
Tell if a construct item is syntactically protected with some markup and is stored as a string (without the markup).
- property module: ModuleBase#
Module containing the item.
- Returns:
ModuleBase: module container, see
ModuleBody
andModuleInterface
- property owner: Self#
Owner of current Swan construct.
- class ansys.scadeone.core.swan.StructProjection(expr: Expression, label: Identifier)#
Bases:
Expression
Static structure field access: expr . label.
- static set_owner(owner: Self, children: Self | Iterable[Self])#
Helper to set owner as the owner of each item in the Iterable items.
- property expr: Expression#
Expression.
- property is_protected: bool#
Tell if a construct item is syntactically protected with some markup and is stored as a string (without the markup).
- property label: Identifier#
Field name.
- property module: ModuleBase#
Module containing the item.
- Returns:
ModuleBase: module container, see
ModuleBody
andModuleInterface
- property owner: Self#
Owner of current Swan construct.