Skip to content
Snippets Groups Projects
Commit bdb6ae0e authored by Dmitry Simonenko's avatar Dmitry Simonenko
Browse files

lua-tuple-morph: tuple:find/findall examples added

parent 83582674
No related branches found
No related tags found
No related merge requests found
......@@ -775,6 +775,18 @@ localhost> lua t:morph(-1, 1, 'zyx')
- ghq
- zyx
...
localhost> lua t=box.insert(0, 'abc', 'def', 'abc')
---
...
localhost> lua t:find('abc')
---
- 0
...
localhost> lua t:findall('abc')
---
- 0
- 2
...
</programlisting>
</para></listitem>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment