Overview Schemas Index

MATHEMATICAL_FUNCTIONS_SCHEMA (jsdai.SMathematical_functions_schema)


FUNCTION make_function_application
          (afunction : maths_function_select, arguments : LIST [1:?] OF maths_value) : function_application;

RETURN (function_application (afunction, arguments)
    || multiple_arity_generic_expression (convert_to_maths_function (afunction) +
      convert_to_operands (arguments))  -- derived
      || generic_expression() );

END_FUNCTION; -- make_function_application

public class FMake_function_application
          public static Value run(SdaiContext _context, Value afunction, Value arguments)