remove math.blas.syntax and merge parsing words into math.blas.vectors/matrices
[factor/jcg.git] / basis / json / writer / writer-docs.factor
blob8512d80384454f7ca0c0aa7384953fdd81c03c2e
1 ! Copyright (C) 2006 Chris Double.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: help.markup help.syntax ;
4 IN: json.writer
6 HELP: >json
7 { $values { "obj" "an object" } { "string" "the object converted to JSON format" } }
8 { $description "Serializes the object into a JSON formatted string." } 
9 { $see-also json-print } ;
11 HELP: json-print
12 { $values { "obj" "an object" } }
13 { $description "Serializes the object into a JSON formatted string and outputs it to the standard output stream." } 
14 { $see-also >json } ;
16 ARTICLE: "json.writer" "JSON writer"
17 "The " { $vocab-link "json.writer" } " vocabulary defines words for converting objects to JSON format."
18 { $subsection >json }
19 { $subsection json-print } ;
21 ABOUT: "json.writer"