Overview Schemas Index

SUPPORT_RESOURCE_SCHEMA (jsdai.SSupport_resource_schema)


FUNCTION bag_to_set
          (the_bag : BAG [0:?] OF GENERIC:intype) : SET [0:?] OF GENERIC:intype;

LOCAL
      the_set : SET OF GENERIC:intype := [];
    END_LOCAL;

    IF SIZEOF(the_bag) > 0 THEN
      REPEAT i := 1 TO HIINDEX(the_bag);
        the_set := the_set + the_bag[i];
      END_REPEAT;
    END_IF;
    RETURN (the_set);

END_FUNCTION; -- bag_to_set

public class FBag_to_set
          public static Value run(SdaiContext _context, Value the_bag)