Overview Schemas Index

TOPOLOGY_SCHEMA (jsdai.STopology_schema)


FUNCTION conditional_reverse
          (p : BOOLEAN, an_item : reversible_topology) : reversible_topology;

IF p THEN
     RETURN  (an_item);
   ELSE
     RETURN (topology_reversed (an_item));
   END_IF;

END_FUNCTION; -- conditional_reverse

public class FConditional_reverse
          public static Value run(SdaiContext _context, Value p, Value an_item)