Overview Schemas Index

TOPOLOGY_SCHEMA (jsdai.STopology_schema)


FUNCTION list_to_set
          (l : LIST [0:?] OF GENERIC:t) : SET [0:?] OF GENERIC:t;

LOCAL
     s : SET OF GENERIC:T := [];
   END_LOCAL;
      
   REPEAT i := 1 TO SIZEOF(l);
     s := s + l[i];
   END_REPEAT;
   
   RETURN(s);

END_FUNCTION; -- list_to_set

public class FList_to_set
          public static Value run(SdaiContext _context, Value l)