primitives.alh 4.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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_userroot()
  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. Element function exec(a : Element)
  94. Element function resolve(var_name : String)
  95. Boolean function has_input()