FUNCTION boolean_choose

(* SCHEMA integrated_cnc_schema; *)
FUNCTION boolean_choose (
    b       : BOOLEAN;
    choice1 : GENERIC : item;
    choice2 : GENERIC : item 
    ) : GENERIC : item;
    IF b THEN
      RETURN (choice1);
    ELSE
      RETURN (choice2);
    END_IF;
END_FUNCTION; -- 10303-42: topology_schema

Referenced By

Defintion boolean_choose is references by the following definitions:
DefinitionType
 oriented_edge ENTITY


[Top Level Definitions]

Generated by STEP ToolsTM EXPRESS to HTML Converter
on 2010-01-12T10:42:25-02:00