MCPcopy Create free account
hub / github.com/activeloopai/deeplake / unary_operator_expr

Class unary_operator_expr

cpp/query_core/expr.hpp:179–196  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

177};
178
179class unary_operator_expr
180{
181public:
182 unary_operator_expr(expr&& operand, nd::unary_operator_type type);
183
184 const expr& get_operand() const;
185
186 nd::unary_operator_type get_type() const
187 {
188 return type;
189 }
190
191 std::string to_string() const;
192
193private:
194 std::shared_ptr<expr> operand;
195 nd::unary_operator_type type;
196};
197
198class binary_operator_expr
199{

Callers 1

make_unary_operatorMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected