|
FUNCTION make_standard_table_function (index_base : zero_or_one, shape : LIST [1:?] OF positive_integer, operand : maths_function, first : INTEGER, order : ordering_type) : standard_table_function; RETURN ( standard_table_function ( order ) || linearized_table_function ( first ) || explicit_table_function ( index_base , shape ) || maths_function ( ) || generic_expression ( ) || unary_generic_expression ( operand ) ) ; END_FUNCTION; -- make_standard_table_function |
|
public class FMake_standard_table_function public static Value run(SdaiContext _context, Value index_base, Value shape, Value operand, Value first, Value order) |