From 5d0df4dedccbc711dfd66dc6413fb30897170e2e Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Mon, 10 May 2021 23:36:32 +0300 Subject: [PATCH] docs... Signed-off-by: Alex A. Naanou --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 8abe3db..c7c220a 100644 --- a/README.md +++ b/README.md @@ -1785,11 +1785,25 @@ XXX only list the differences... #### `.at(..)` +```bnf +.at() + -> +``` + #### `.shift()` / `.pop()` +```bnf +.shift() +.pop() + -> +``` + +Note that `.shift()` will get the element the generator is at currently which may +not be the first element in the sequence. +