]> gitweb.factorcode.org Git - factor.git/blob - extra/lists/circular/circular-docs.factor
lists.circular: new vocab
[factor.git] / extra / lists / circular / circular-docs.factor
1 ! Copyright (C) 2022 Alexander Ilin.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: arrays circular help.markup help.syntax lists lists.lazy ;
4 IN: lists.circular
5
6 ABOUT: "lists.circular"
7
8 ARTICLE: "lists.circular" "Circular lists"
9 "The " { $vocab-link "lists.circular" } " vocabulary implements virtually infinite linked lists based on the " { $link circular } " sequences. These are especially useful when used lazily (" { $vocab-link "lists.lazy" } "), see " { $link ltake } ", just don't call " { $link llength } "." ;