]> gitweb.factorcode.org Git - factor.git/blob - basis/json/reader/reader-docs.factor
Merge branch 'master' of git://factorcode.org/git/factor into bleeding_edge
[factor.git] / basis / json / reader / reader-docs.factor
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.reader
5
6 HELP: json>
7 { $values { "string" "a string in JSON format" } { "object" "a deserialized object" } }
8 { $description "Deserializes the JSON formatted string into a Factor object. JSON objects are converted to Factor hashtables. All other JSON objects convert to their obvious Factor equivalents." } ;
9
10 ARTICLE: "json.reader" "JSON reader"
11 "The " { $vocab-link "json.reader" } " vocabulary defines a word for parsing strings in JSON format."
12 { $subsections json> } ;
13
14 ABOUT: "json.reader"