Overview Schemas Index

MATHEMATICAL_FUNCTIONS_SCHEMA (jsdai.SMathematical_functions_schema)


FUNCTION repackage
          (tspace : tuple_space, repckg : repackage_options) : tuple_space;

CASE repckg OF
  ro_nochange : RETURN  (tspace);
  ro_wrap_as_tuple : RETURN  (one_tuples_of (tspace));
  ro_unwrap_tuple : RETURN  (factor1 (tspace));
  OTHERWISE : RETURN (?);
  END_CASE;

END_FUNCTION; -- repackage

public class FRepackage
          public static Value run(SdaiContext _context, Value tspace, Value repckg)