primitives.alh 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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_t2s(a: Type)
  34. String function cast_v2s(a: Element)
  35. String function cast_id2s(a: Element)
  36. Element function dict_add(a: Element, b: Element, c: Element)
  37. Element function dict_delete(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. Boolean function integer_gt(a: Integer, b: Integer)
  59. Boolean function integer_gte(a: Integer, b: Integer)
  60. Boolean function integer_lt(a: Integer, b: Integer)
  61. Boolean function integer_lte(a: Integer, b: Integer)
  62. Boolean function integer_neg(a: Integer)
  63. Element function list_read(a: Element, b: Integer)
  64. Element function list_append(a: Element, b: Element)
  65. Element function list_insert(a: Element, b: Element, c: Integer)
  66. Element function list_delete(a: Element, b: Integer)
  67. Integer function list_len(a: Element)
  68. Element function set_add(a: Element, b: Element)
  69. Element function set_pop(a: Element)
  70. Element function set_remove(a: Element, b: Element)
  71. Boolean function set_in(a: Element, b: Element)
  72. Element function set_remove_node(a: Element, b: Element)
  73. Element function set_in_node(a: Element, b: Element)
  74. String function string_join(a: String, b: String)
  75. String function string_get(a: String, b: Integer)
  76. String function string_substr(a: String, b: Integer, c: Integer)
  77. Integer function string_len(a: String)
  78. Element function string_split(a: String, b: String)
  79. Boolean function string_startswith(a: String, b: String)
  80. Element function deserialize(a: String)
  81. String function log(a: String)
  82. Element function read_root()
  83. Element function exec(a : Element)
  84. Element function input()
  85. Element function output(a : Element)
  86. Boolean function is_physical_int(a : Element)
  87. Boolean function is_physical_float(a : Element)
  88. Boolean function is_physical_string(a : Element)
  89. Boolean function is_physical_action(a : Element)
  90. Boolean function is_physical_boolean(a : Element)