Add Inputs.__contains__ method
#402
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This adds a method for
Inputs.__contains__, so that the user can write code like this:When
inis used, Shiny creates a reactive dependency. Ifinput.xstarts out nonexistent and then later gains a value, thenfoowill be invalidated and re-executed. After that point,input.x()changes value, then this will not causefooto invalidate -- the invalidation only occurs whenWhen
xis not yet set from the client, the interface here makes it look likexis not in theInputobject (wheninput.x()and"x" in inputare called). The underlying implementation actually does addxto theInputs's internal_mapobject, but that is hidden from the user.Test application: