forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
Query
angerangel edited this page Mar 19, 2013
·
1 revision
QUERY target /mode field
Returns information about a port, file, or URL.
QUERY is an action value.
- target (port! file! url! block!)
-
/mode -- Get mode information
- field -- NONE will return valid modes for port type (word! none!)
#SOURCE
query: make action! [ [
"Returns information about a port, file, or URL."
target [port! file! url! block!]
/mode "Get mode information"
field [word! none!] "NONE will return valid modes for port type"
] ]