primitives.alh 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. Boolean function value_eq(a: Element, b: Element)
  2. Boolean function value_neq(a: Element, b: Element)
  3. Boolean function bool_and(a: Boolean, b: Boolean)
  4. Boolean function bool_or(a: Boolean, b: Boolean)
  5. Boolean function bool_not(a: Boolean)
  6. Element function create_node()
  7. Element function create_edge(a: Element, b: Element)
  8. Element function create_value(a: Element)
  9. Boolean function is_edge(a: Element)
  10. Integer function read_nr_out(a: Element)
  11. Element function read_out(a: Element, b: Integer)
  12. Integer function read_nr_in(a: Element)
  13. Element function read_in(a: Element, b: Integer)
  14. Element function read_edge_src(a: Element)
  15. Element function read_edge_dst(a: Element)
  16. Boolean function delete_element(a: Element)
  17. Boolean function element_eq(a: Element, b: Element)
  18. Boolean function element_neq(a: Element, b: Element)
  19. Float function cast_i2f(a: Integer)
  20. String function cast_i2s(a: Integer)
  21. Boolean function cast_i2b(a: Integer)
  22. Integer function cast_f2i(a: Float)
  23. Boolean function cast_f2b(a: Float)
  24. String function cast_f2s(a: Float)
  25. Integer function cast_s2i(a: String)
  26. Float function cast_s2f(a: String)
  27. Boolean function cast_s2b(a: String)
  28. Integer function cast_b2i(a: Boolean)
  29. Float function cast_b2f(a: Boolean)
  30. String function cast_b2s(a: Boolean)
  31. String function cast_e2s(a: Element)
  32. String function cast_a2s(a: Action)
  33. String function cast_v2s(a: Element)
  34. String function cast_id2s(a: Element)
  35. Element function dict_add(a: Element, b: Element, c: Element)
  36. Element function dict_delete(a: Element, b: Element)
  37. Element function dict_delete_node(a: Element, b: Element)
  38. Element function dict_read(a: Element, b: Element)
  39. Element function dict_read_edge(a: Element, b: Element)
  40. Element function dict_read_node(a: Element, b: Element)
  41. Integer function dict_len(a: Element)
  42. Boolean function dict_in(a: Element, b: Element)
  43. Boolean function dict_in_node(a: Element, b: Element)
  44. Element function dict_keys(a: Element)
  45. Float function float_addition(a: Float, b: Float)
  46. Float function float_subtraction(a: Float, b: Float)
  47. Float function float_multiplication(a: Float, b: Float)
  48. Float function float_division(a: Float, b: Float)
  49. Boolean function float_gt(a: Float, b: Float)
  50. Boolean function float_gte(a: Float, b: Float)
  51. Boolean function float_lt(a: Float, b: Float)
  52. Boolean function float_lte(a: Float, b: Float)
  53. Boolean function float_neg(a: Float)
  54. Integer function integer_addition(a: Integer, b: Integer)
  55. Integer function integer_subtraction(a: Integer, b: Integer)
  56. Integer function integer_multiplication(a: Integer, b: Integer)
  57. Integer function integer_division(a: Integer, b: Integer)
  58. Integer function integer_modulo(a: Integer, b: Integer)
  59. Boolean function integer_gt(a: Integer, b: Integer)
  60. Boolean function integer_gte(a: Integer, b: Integer)
  61. Boolean function integer_lt(a: Integer, b: Integer)
  62. Boolean function integer_lte(a: Integer, b: Integer)
  63. Boolean function integer_neg(a: Integer)
  64. Element function list_read(a: Element, b: Integer)
  65. Element function list_append(a: Element, b: Element)
  66. Element function list_insert(a: Element, b: Element, c: Integer)
  67. Element function list_delete(a: Element, b: Integer)
  68. Integer function list_len(a: Element)
  69. Element function set_add(a: Element, b: Element)
  70. Element function set_pop(a: Element)
  71. Element function set_remove(a: Element, b: Element)
  72. Boolean function set_in(a: Element, b: Element)
  73. Element function set_remove_node(a: Element, b: Element)
  74. Element function set_in_node(a: Element, b: Element)
  75. String function string_join(a: String, b: String)
  76. String function string_get(a: String, b: Integer)
  77. String function string_substr(a: String, b: Integer, c: Integer)
  78. Integer function string_len(a: String)
  79. Element function string_split(a: String, b: String)
  80. Boolean function string_startswith(a: String, b: String)
  81. Element function deserialize(a: String)
  82. String function log(a: String)
  83. Element function read_root()
  84. Element function read_taskroot()
  85. Element function input()
  86. Element function output(a : Element)
  87. Boolean function is_physical_int(a : Element)
  88. Boolean function is_physical_float(a : Element)
  89. Boolean function is_physical_string(a : Element)
  90. Boolean function is_physical_action(a : Element)
  91. Boolean function is_physical_boolean(a : Element)
  92. Boolean function has_value(a : Element)
  93. Float function time()
  94. String function hash(a : String)
  95. Element function exec(a : Element)
  96. Element function resolve(var_name : String)
  97. Boolean function has_input()
  98. Element function list_pop(lst : Element, index : Integer)
  99. Element function set_copy(set : Element)
  100. String function set_to_string(set : Element)
  101. String function list_to_string(set : Element)
  102. String function dict_to_string(dict : Element)
  103. Element function set_overlap(sa : Element, sb : Element)
  104. Element function set_equality(sa : Element, sb : Element)
  105. Element function dict_copy(dict : Element)
  106. Element function set_to_list(s : Element)
  107. Element function create_tuple(a : Element, b : Element)