lazy-lists: help for llines

darcs
chris.double 2006-09-18 02:54:10 +00:00
parent 3ea3b26ce0
commit 968091b525
1 changed files with 6 additions and 1 deletions

View File

@ -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 } ;