]> gitweb.factorcode.org Git - factor.git/blob - basis/circular/circular-docs.factor
Merge branch 'master' of git://factorcode.org/git/factor into klazuka
[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 HELP: rotate-circular
47 { $values
48     { "circular" circular } }
49 { $description "Advances the start index of a circular object by one." } ;
50
51 ARTICLE: "circular" "Circular sequences"
52 "The " { $vocab-link "circular" } " vocabulary implements the " { $link "sequence-protocol" } " to allow an arbitrary start index and wrap-around indexing." $nl
53 "Creating a new circular object:"
54 { $subsections
55     <circular>
56     <circular-string>
57     <growing-circular>
58 }
59 "Changing the start index:"
60 { $subsections
61     change-circular-start
62     rotate-circular
63 }
64 "Pushing new elements:"
65 { $subsections
66     push-circular
67     push-growing-circular
68 } ;
69
70 ABOUT: "circular"