]> gitweb.factorcode.org Git - factor.git/blob - basis/circular/circular-docs.factor
add some docs to circular
[factor.git] / basis / circular / circular-docs.factor
1 ! Copyright (C) 2008 Doug Coleman.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: help.markup help.syntax io.streams.string sequences
4 math kernel ;
5 IN: circular
6
7 HELP: <circular-string>
8 { $values
9      { "n" integer }
10      { "circular" circular } }
11 { $description "Creates a new circular string object. A circular string is a string object that can be accessed out of bounds and the index will wrap around to the start of the string." } ;
12
13 HELP: <circular>
14 { $values
15      { "seq" sequence }
16      { "circular" circular } }
17 { $description "Creates a new " { $link circular } " object that wraps an existing sequence. By default, the index is set to zero." } ;
18
19 HELP: <growing-circular>
20 { $values
21      { "capacity" integer }
22      { "growing-circular" growing-circular } }
23 { $description "Creates a new growing-circular object." } ;
24
25 HELP: change-circular-start
26 { $values
27      { "n" integer } { "circular" circular } }
28 { $description "Changes the start index of a circular object." } ;
29
30 HELP: circular
31 { $description "A tuple class that stores a sequence and its start index." } ;
32
33 HELP: growing-circular
34 { $description "A circular sequence that is growable." } ;
35
36 HELP: push-circular
37 { $values
38      { "elt" object } { "circular" circular } }
39 { $description "Pushes an element to a " { $link circular } " object." } ;
40
41 HELP: push-growing-circular
42 { $values
43      { "elt" object } { "circular" circular } }
44 { $description "Pushes an element onto a " { $link growing-circular } " object." } ;
45
46 ARTICLE: "circular" "circular"
47 "The " { $vocab-link "circular" } " vocabulary implements the " { $link "sequence-protocol" } " to allow an arbitrary start index and wrap-around indexing." $nl
48 "Creating a new circular object:"
49 { $subsection <circular> }
50 { $subsection <circular-string> }
51 { $subsection <growing-circular> }
52 "Changing the start index:"
53 { $subsection change-circular-start }
54 "Pushing new elements:"
55 { $subsection push-circular }
56 { $subsection push-growing-circular } ;
57
58 ABOUT: "circular"