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

Class param_expr

cpp/query_core/expr.hpp:106–126  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

104};
105
106class param_expr
107{
108public:
109 explicit param_expr(int32_t index)
110 : index_(index)
111 {
112 }
113
114 inline int32_t get_index() const noexcept
115 {
116 return index_;
117 }
118
119 inline std::string to_string() const noexcept
120 {
121 return "?";
122 }
123
124private:
125 int32_t index_ = 0;
126};
127
128class column_ref_expr
129{

Callers 1

make_parameterMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected