aboutsummaryrefslogtreecommitdiff
path: root/docs/thread
diff options
context:
space:
mode:
Diffstat (limited to 'docs/thread')
-rw-r--r--docs/thread/buffer.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/thread/buffer.md b/docs/thread/buffer.md
index e366a33..65af0c0 100644
--- a/docs/thread/buffer.md
+++ b/docs/thread/buffer.md
@@ -12,6 +12,19 @@ the __index metamethod will index any value that is not a buffer.* method on the
every other metamethod will be replaced with a proxy to the metamethod in the copied object
+inner functions can be called using the : syntactic sugar
+
+```
+buffer = llby.thread.buffer(llby.crypto.sha1())
+
+buffer:set(buffer:get():update("awa"))
+--or
+buffer:set(buffer.update(buffer:get(), "awa"))
+
+--is the same as
+buffer:set(buffer:update("awa"))
+```
+
### buffer:get
buffer:get()