These functions are re-exported from shiny for convenience, so you can use them in irid apps without loading shiny explicitly.
Value
The return values are those of the underlying shiny functions:
reactiveVal()returns a function that reads the current value when called with no argument and sets it when called with one value.reactive()returns a reactive expression (a function of classreactiveExpr/reactive) that yields the cached expression value when called.observe()andobserveEvent()return an observer reference object (classObserver) invisibly; they are called for their side effects.isolate()returns the value ofexpr, evaluated without taking a reactive dependency.tagsis a named list of functions that construct HTML tag objects, andtagList()returns a list of tags (classshiny.tag.list).
Details
reactiveVal(): Create a reactive valuereactive(): Create a reactive expressionobserve(): Create an observerobserveEvent(): Create an event-driven observerisolate(): Run an expression without reactive dependenciestags: HTML tag builder
tagList(): Combine tags into a list
See the shiny documentation for full details.
