FUNCTION convert_to_operands
(* SCHEMA engineering_properties_schema; *)
FUNCTION convert_to_operands
(values : AGGREGATE OF maths_value ) : LIST OF generic_expression;
LOCAL
operands : LIST OF generic_expression := [];
loc : INTEGER := 0;
END_LOCAL;
IF NOT EXISTS(values) THEN
RETURN (?);
END_IF;
REPEAT i := LOINDEX(values) TO HIINDEX(values);
INSERT( operands, convert_to_operand(values[i]), loc );
loc := loc + 1;
END_REPEAT;
RETURN (operands);
END_FUNCTION;
Referenced By
Defintion convert_to_operands is references by the following definitions:
[Top Level Definitions] [Exit]Generated by STEP Tools® EXPRESS to HTML Converter
2012-03-27T17:18:51-04:00