├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── Interface.R ├── ProxyClass.R ├── XR.R └── packageSetup.R ├── README.md ├── inst ├── doc │ └── Chapter_XR.pdf ├── examples │ ├── NA_JSON.R │ ├── examples.R │ └── testAs.R ├── extras │ └── scalar.R └── tests │ └── proxyToJSON.R ├── man-roxygen └── reference.R └── man ├── AssignedProxy-class.Rd ├── Interface-class.Rd ├── InterfaceCondition-class.Rd ├── MiscMethods.Rd ├── ProxyClass-class.Rd ├── ProxyClassObject-class.Rd ├── ProxyFunction-class.Rd ├── ProxyObject-class.Rd ├── ServerClassDef-class.Rd ├── Unconvertible-class.Rd ├── XR.Rd ├── asJSONS4.Rd ├── asRObject.Rd ├── asServerObject.Rd ├── dumpProxyFunction.Rd ├── evaluatorAction.Rd ├── evaluatorActions.Rd ├── fillNames.Rd ├── fixHelpTopic.Rd ├── from_Server-class.Rd ├── getInterface.Rd ├── isProxy.Rd ├── nameQuote.Rd ├── noScalar.Rd ├── objectAsJSON.Rd ├── objectDictionary.Rd ├── packageSetup.Rd ├── proxyEvaluator.Rd ├── proxyName.Rd ├── serverFields-class.Rd ├── setProxyClass.Rd ├── typeToJSON.Rd ├── valueFromServer.Rd └── vector_R-class.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/Interface.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/R/Interface.R -------------------------------------------------------------------------------- /R/ProxyClass.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/R/ProxyClass.R -------------------------------------------------------------------------------- /R/XR.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/R/XR.R -------------------------------------------------------------------------------- /R/packageSetup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/R/packageSetup.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/README.md -------------------------------------------------------------------------------- /inst/doc/Chapter_XR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/inst/doc/Chapter_XR.pdf -------------------------------------------------------------------------------- /inst/examples/NA_JSON.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/inst/examples/NA_JSON.R -------------------------------------------------------------------------------- /inst/examples/examples.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/inst/examples/examples.R -------------------------------------------------------------------------------- /inst/examples/testAs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/inst/examples/testAs.R -------------------------------------------------------------------------------- /inst/extras/scalar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/inst/extras/scalar.R -------------------------------------------------------------------------------- /inst/tests/proxyToJSON.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/inst/tests/proxyToJSON.R -------------------------------------------------------------------------------- /man-roxygen/reference.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man-roxygen/reference.R -------------------------------------------------------------------------------- /man/AssignedProxy-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/AssignedProxy-class.Rd -------------------------------------------------------------------------------- /man/Interface-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/Interface-class.Rd -------------------------------------------------------------------------------- /man/InterfaceCondition-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/InterfaceCondition-class.Rd -------------------------------------------------------------------------------- /man/MiscMethods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/MiscMethods.Rd -------------------------------------------------------------------------------- /man/ProxyClass-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/ProxyClass-class.Rd -------------------------------------------------------------------------------- /man/ProxyClassObject-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/ProxyClassObject-class.Rd -------------------------------------------------------------------------------- /man/ProxyFunction-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/ProxyFunction-class.Rd -------------------------------------------------------------------------------- /man/ProxyObject-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/ProxyObject-class.Rd -------------------------------------------------------------------------------- /man/ServerClassDef-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/ServerClassDef-class.Rd -------------------------------------------------------------------------------- /man/Unconvertible-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/Unconvertible-class.Rd -------------------------------------------------------------------------------- /man/XR.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/XR.Rd -------------------------------------------------------------------------------- /man/asJSONS4.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/asJSONS4.Rd -------------------------------------------------------------------------------- /man/asRObject.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/asRObject.Rd -------------------------------------------------------------------------------- /man/asServerObject.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/asServerObject.Rd -------------------------------------------------------------------------------- /man/dumpProxyFunction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/dumpProxyFunction.Rd -------------------------------------------------------------------------------- /man/evaluatorAction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/evaluatorAction.Rd -------------------------------------------------------------------------------- /man/evaluatorActions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/evaluatorActions.Rd -------------------------------------------------------------------------------- /man/fillNames.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/fillNames.Rd -------------------------------------------------------------------------------- /man/fixHelpTopic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/fixHelpTopic.Rd -------------------------------------------------------------------------------- /man/from_Server-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/from_Server-class.Rd -------------------------------------------------------------------------------- /man/getInterface.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/getInterface.Rd -------------------------------------------------------------------------------- /man/isProxy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/isProxy.Rd -------------------------------------------------------------------------------- /man/nameQuote.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/nameQuote.Rd -------------------------------------------------------------------------------- /man/noScalar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/noScalar.Rd -------------------------------------------------------------------------------- /man/objectAsJSON.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/objectAsJSON.Rd -------------------------------------------------------------------------------- /man/objectDictionary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/objectDictionary.Rd -------------------------------------------------------------------------------- /man/packageSetup.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/packageSetup.Rd -------------------------------------------------------------------------------- /man/proxyEvaluator.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/proxyEvaluator.Rd -------------------------------------------------------------------------------- /man/proxyName.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/proxyName.Rd -------------------------------------------------------------------------------- /man/serverFields-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/serverFields-class.Rd -------------------------------------------------------------------------------- /man/setProxyClass.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/setProxyClass.Rd -------------------------------------------------------------------------------- /man/typeToJSON.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/typeToJSON.Rd -------------------------------------------------------------------------------- /man/valueFromServer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/valueFromServer.Rd -------------------------------------------------------------------------------- /man/vector_R-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XR/HEAD/man/vector_R-class.Rd --------------------------------------------------------------------------------