createCrudExpressionPlain: Create access expression

Description Usage Arguments Details Value Author(s) References See Also Examples

View source: R/crud.R

Description

Plain and thus faster version of createCrudExpression for scenarios where computational costs really matter.

Usage

1

Arguments

inst

Object for method dispatch.

...

Further arguments to be passed to subsequent functions/methods.

Details

Known methods:

For a more comprehensive but slower version see: createCrudExpression

Value

See respective methods.

Author(s)

Janko Thyson janko.thyson@rappster.de

References

http://github.com/rappster/crudr

See Also

Extract, assignOps

Examples

1
2
3
4
5
6
7
8
inst <- list(a = list(b = list(c = 10)))

(expr <- createCrudExpressionPlain(inst, c("a", "b")))
eval(expr)

(expr <- createCrudExpressionPlain(inst, c("a", "b"), 1))
eval(expr)
inst

rappster/crudr documentation built on May 26, 2019, 11:12 p.m.