diff options
author | Kim Alvefur <zash@zash.se> | 2022-07-24 21:39:32 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2022-07-24 21:39:32 +0200 |
commit | f307901a09bbb426ae3e0ccf3dec40b69ef68b8f (patch) | |
tree | f22ad84557fd21243788a69438d4a6d2f50e1cd3 /teal-src | |
parent | 90dd7f694318b638ff1eef4d9a6e2e6f7f69820f (diff) | |
download | prosody-f307901a09bbb426ae3e0ccf3dec40b69ef68b8f.tar.gz prosody-f307901a09bbb426ae3e0ccf3dec40b69ef68b8f.zip |
util.queue: Add Teal interface description
Diffstat (limited to 'teal-src')
-rw-r--r-- | teal-src/util/queue.d.tl | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/teal-src/util/queue.d.tl b/teal-src/util/queue.d.tl new file mode 100644 index 00000000..cb8458e7 --- /dev/null +++ b/teal-src/util/queue.d.tl @@ -0,0 +1,21 @@ +local record lib + record queue<T> + size : integer + count : function (queue<T>) : integer + enum push_errors + "queue full" + end + + push : function (queue<T>, T) : boolean, push_errors + pop : function (queue<T>) : T + peek : function (queue<T>) : T + replace : function (queue<T>, T) : boolean, push_errors + type iterator = function (T, integer) : integer, T + items : function (queue<T>) : iterator, T, integer + type consume_iter = function (queue<T>) : T + consume : function (queue<T>) : consume_iter + end + + new : function<T> (size:integer, allow_wrapping:boolean) : queue<T> +end +return lib; |