SOAP.logical {SSOAP} | R Documentation |
This is a simple function that handles converting a
boolean value given in SOAP to an S logical value.
This operates on the value within the SOAP node
(not the node itself).
This is different from
as.logical
only
in that it handles
"0" (i.e. a string).
SOAP.logical(x)
x |
a string, or any S value that is to coerced to a logical value. |
A logical value.
Duncan Temple Lang <duncan@wald.ucdavis.edu>
http://www.w3.org/TR/SOAP/ http://www.omegahat.org/SSOAP, http://www.omegahat.org/bugs.
fromSOAP
SOAPPrimitiveConverters
## Not run: # Since not exported SOAP.logical("0") SOAP.logical("TRUE") SOAP.logical("FALSE") ## End(Not run)