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

Class binary_operator_expr

cpp/query_core/expr.hpp:198–217  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

196};
197
198class binary_operator_expr
199{
200public:
201 binary_operator_expr(expr&& left, expr&& right, nd::binary_operator_type type);
202
203 const expr& get_left() const;
204
205 const expr& get_right() const;
206
207 nd::binary_operator_type get_type() const
208 {
209 return type;
210 }
211
212 std::string to_string() const;
213
214private:
215 std::shared_ptr<std::pair<expr, expr>> exprs;
216 nd::binary_operator_type type;
217};
218
219class ternary_operator_expr
220{

Callers 1

make_binary_operatorMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected