2006-09-05 01:29:26 -04:00
|
|
|
USING: alien errors generic hashtables help inference tools
|
2006-08-01 17:41:10 -04:00
|
|
|
io-internals io libc math-internals modules namespaces parser
|
|
|
|
|
prettyprint queues sequences sequences-internals test words
|
|
|
|
|
kernel generic ;
|
2006-01-13 02:38:57 -05:00
|
|
|
|
|
|
|
|
ARTICLE: "handbook" "Factor documentation"
|
2006-03-28 23:31:45 -05:00
|
|
|
{ $subsection "changes" }
|
2006-12-18 01:54:11 -05:00
|
|
|
"If you are new to Factor, please read the cookbook first."
|
|
|
|
|
{ $subsection "cookbook" }
|
2006-06-17 02:10:28 -04:00
|
|
|
{ $heading "Language reference" }
|
2006-06-08 18:06:38 -04:00
|
|
|
{ $subsection "conventions" }
|
2006-01-13 02:38:57 -05:00
|
|
|
{ $subsection "syntax" }
|
|
|
|
|
{ $subsection "dataflow" }
|
|
|
|
|
{ $subsection "words" }
|
|
|
|
|
{ $subsection "objects" }
|
|
|
|
|
{ $subsection "math" }
|
|
|
|
|
{ $subsection "collections" }
|
2006-01-19 03:03:32 -05:00
|
|
|
{ $subsection "streams" }
|
2006-01-19 18:15:37 -05:00
|
|
|
{ $subsection "parser" }
|
|
|
|
|
{ $subsection "prettyprint" }
|
2006-06-12 03:21:08 -04:00
|
|
|
{ $subsection "alien" }
|
2006-06-17 02:10:28 -04:00
|
|
|
{ $heading "Environment reference" }
|
2006-07-02 19:14:34 -04:00
|
|
|
{ $subsection "cli" }
|
2006-06-17 02:10:28 -04:00
|
|
|
{ $subsection "tools" }
|
2006-10-26 00:06:25 -04:00
|
|
|
{ $subsection "modules" }
|
2006-06-17 02:10:28 -04:00
|
|
|
{ $subsection "help" }
|
2006-08-18 18:47:41 -04:00
|
|
|
{ $subsection "inference" }
|
|
|
|
|
{ $subsection "compiler" }
|
2006-09-19 02:30:21 -04:00
|
|
|
{ $heading "Graphical user interface" }
|
|
|
|
|
{ $subsection "ui-tools" }
|
2006-12-18 01:54:11 -05:00
|
|
|
{ $subsection "gadgets" }
|
2006-10-21 02:56:41 -04:00
|
|
|
{ $heading "Currently-loaded contributed modules" }
|
|
|
|
|
{ $outliner [ modules-help ] }
|
2006-06-12 03:21:08 -04:00
|
|
|
{ $heading "Index" }
|
|
|
|
|
{ $subsection "article-index" }
|
2006-08-01 17:35:00 -04:00
|
|
|
{ $subsection "error-index" }
|
2006-06-12 03:21:08 -04:00
|
|
|
{ $subsection "type-index" }
|
2006-12-18 01:54:11 -05:00
|
|
|
{ $subsection "class-index" }
|
|
|
|
|
{ $subsection "primitive-index" } ;
|
2006-06-12 03:21:08 -04:00
|
|
|
|
|
|
|
|
ARTICLE: "article-index" "Article index"
|
|
|
|
|
{ $outliner [ articles get hash-keys ] } ;
|
|
|
|
|
|
|
|
|
|
ARTICLE: "primitive-index" "Primitive index"
|
|
|
|
|
{ $outliner [ all-words [ primitive? ] subset ] } ;
|
|
|
|
|
|
2006-08-01 17:56:20 -04:00
|
|
|
ARTICLE: "error-index" "Error index"
|
2006-12-17 16:28:41 -05:00
|
|
|
{ $outliner [ all-errors ] } ;
|
2006-08-01 17:35:00 -04:00
|
|
|
|
2006-06-12 03:21:08 -04:00
|
|
|
ARTICLE: "type-index" "Type index"
|
|
|
|
|
{ $outliner [ builtins get [ ] subset ] } ;
|
|
|
|
|
|
|
|
|
|
ARTICLE: "class-index" "Class index"
|
2006-06-29 00:25:35 -04:00
|
|
|
{ $outliner [ classes ] } ;
|