Rerun C++ SDK
|
Component: An individual query expression used to filter a set of datatypes::EntityPath
s.
More...
#include <rerun/blueprint/components/query_expression.hpp>
Public Member Functions | |
QueryExpression (rerun::datatypes::Utf8 filter_) | |
QueryExpression & | operator= (rerun::datatypes::Utf8 filter_) |
QueryExpression (std::string value_) | |
QueryExpression & | operator= (std::string value_) |
operator rerun::datatypes::Utf8 () const | |
Cast to the underlying Utf8 datatype. | |
Public Attributes | |
rerun::datatypes::Utf8 | filter |
Component: An individual query expression used to filter a set of datatypes::EntityPath
s.
Each expression is either an inclusion or an exclusion expression. Inclusions start with an optional +
and exclusions must start with a -
.
Multiple expressions are combined together as part of SpaceViewContents
.
The /‍**
suffix matches the whole subtree, i.e. self and any child, recursively (/world/‍**
matches both /world
and /world/car/driver
). Other uses of *
are not (yet) supported.