FUNCTION convert_to_operands_prcmfn

(* SCHEMA step_merged_ap_schema; *)
-- IN AP238 STEP-NC/AP242
FUNCTION convert_to_operands_prcmfn
      (srcdom : maths_space_or_function;
       prepfun : LIST OF maths_function;
       finfun : maths_function_select ) : LIST [2:?] OF generic_expression;
   LOCAL
      operands : LIST OF generic_expression := [];
   END_LOCAL;
      INSERT( operands, srcdom, 0 );
      REPEAT i := 1 TO SIZEOF(prepfun);
         INSERT( operands, prepfun[i], i );
      END_REPEAT;
      INSERT( operands, convert_to_maths_function(finfun), SIZEOF(prepfun) + 1 );
      RETURN (operands);
END_FUNCTION;

Referenced By

Defintion convert_to_operands_prcmfn is references by the following definitions:
DefinitionType
 make_parallel_composed_function FUNCTION
 parallel_composed_function ENTITY


[Top Level Definitions] [Exit]

Generated by STEP Tools® EXPRESS to HTML Converter
2020-07-28T17:02:20-04:00