|
FUNCTION shell_reversed (a_shell : shell) : shell; IF ( 'topology_schema.open_shell' IN TYPEOF ( a_shell ) ) THEN RETURN ( open_shell_reversed ( a_shell ) ) ; ELSE IF ( 'topology_schema.closed_shell' IN TYPEOF ( a_shell ) ) THEN RETURN ( closed_shell_reversed ( a_shell ) ) ; ELSE RETURN ( ? ) ; END_IF ; END_IF ; END_FUNCTION; -- shell_reversed |
|
public class FShell_reversed public static Value run(SdaiContext _context, Value a_shell) |