lazy-lists: help for llines
parent
3ea3b26ce0
commit
968091b525
|
@ -6,5 +6,10 @@ USING: help lazy-lists sequences ;
|
||||||
HELP: lcontents
|
HELP: lcontents
|
||||||
{ $values { "stream" "a stream" } }
|
{ $values { "stream" "a stream" } }
|
||||||
{ $description "Returns a lazy list of all characters in the file. " { $link car } " returns the next character in the file, " { $link cdr } " returns the remaining characters as a lazy list. " { $link nil? } " indicates end of file." }
|
{ $description "Returns a lazy list of all characters in the file. " { $link car } " returns the next character in the file, " { $link cdr } " returns the remaining characters as a lazy list. " { $link nil? } " indicates end of file." }
|
||||||
{ $see-also leach lmap ltake lsubset lfrom lfrom-by } ;
|
{ $see-also llines } ;
|
||||||
|
|
||||||
|
HELP: llines
|
||||||
|
{ $values { "stream" "a stream" } }
|
||||||
|
{ $description "Returns a lazy list of all lines in the file. " { $link car } " returns the next lines in the file, " { $link cdr } " returns the remaining lines as a lazy list. " { $link nil? } " indicates end of file." }
|
||||||
|
{ $see-also lcontents } ;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue