From c05a35a801c597b9018ba8403a1ecf6cb2d1b467 Mon Sep 17 00:00:00 2001 From: "chris.double" Date: Wed, 4 Oct 2006 02:37:59 +0000 Subject: [PATCH] lazy-lists: docs for seq>list --- contrib/lazy-lists/lists.facts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/contrib/lazy-lists/lists.facts b/contrib/lazy-lists/lists.facts index 3c80e72a4b..06e30cebea 100644 --- a/contrib/lazy-lists/lists.facts +++ b/contrib/lazy-lists/lists.facts @@ -132,3 +132,8 @@ HELP: lfrom { $values { "n" "an integer" } { "result" "a lazy list of integers" } } { $description "Return an infinite lazy list of incrementing integers starting from n." } { $see-also leach lmap ltake lsubset lfrom-by } ; + +HELP: seq>list +{ $values { "seq" "a sequence" } { "list" "a list" } } +{ $description "Convert the sequence into a list." } +{ $see-also cons } ;