remove math.blas.syntax and merge parsing words into math.blas.vectors/matrices
[factor/jcg.git] / basis / cocoa / pasteboard / pasteboard-docs.factor
blobca64b1e1369fc196600bcf0f86cf5f40c678e226
1 USING: help.markup help.syntax strings ;
2 IN: cocoa.pasteboard
4 HELP: pasteboard-string?
5 { $values { "pasteboard" "an " { $snippet "NSPasteBoard" } } { "?" "a boolean" } }
6 { $description "Tests if the pasteboard holds a string." } ;
8 HELP: pasteboard-string
9 { $values { "pasteboard" "an " { $snippet "NSPasteBoard" } } { "str" string } }
10 { $description "Outputs the contents of the pasteboard." } ;
12 HELP: set-pasteboard-string
13 { $values { "str" string } { "pasteboard" "an " { $snippet "NSPasteBoard" } } }
14 { $description "Sets the contents of the pasteboard." } ;
16 ARTICLE: "cocoa-pasteboard-utils" "Cocoa pasteboard utilities"
17 { $subsection pasteboard-string? }
18 { $subsection pasteboard-string }
19 { $subsection set-pasteboard-string } ;
21 IN: cocoa.pasteboard
22 ABOUT: "cocoa-pasteboard-utils"