AFL arrary aliasing
Usage
# S4 method for class 'scidb'
x %as% yArguments
- x
an object of class
scidb(a scidb array or expression)- y
alias name
Value
a scidb object
Note
Use the %as% operator in place of the native AFL "as" operator
in AFL expressions written in R.
Examples
if (FALSE) { # \dontrun{
db <- scidbconnect()
x <- scidb(db, "build(<v:double>[i=1:2,1,0], i)")
x %as% y
} # }