From 8fee6363093611302af3af5139eba9716267f03b Mon Sep 17 00:00:00 2001
From: "E. Westbrook"
Date: Mon, 4 Jun 2018 23:23:39 -0600
Subject: [PATCH] Add ltn12.source.table()
---
doc/ltn12.html | 10 ++++++++++
doc/reference.html | 3 ++-
src/ltn12.lua | 10 ++++++++++
test/ltn12test.lua | 9 +++++++++
4 files changed, 31 insertions(+), 1 deletion(-)
diff --git a/doc/ltn12.html b/doc/ltn12.html
index 54e66fb..ee2502f 100644
--- a/doc/ltn12.html
+++ b/doc/ltn12.html
@@ -405,6 +405,16 @@ Creates and returns a source that produces the contents of a
string, chunk by chunk.
+
+
+
+ltn12.source.table(table)
+
+
+
+Creates and returns a source that produces the numerically-indexed values of a table successively beginning at 1. The source returns nil (end-of-stream) whenever a nil value is produced by the current index, which proceeds forward regardless.
+
+