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

Method function_ref_expr

cpp/query_core/expr.hpp:549–554  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

547};
548
549inline function_ref_expr::function_ref_expr(std::string name, std::vector<expr> args)
550 : name(std::move(name))
551 , args(std::make_shared<data_t>(std::move(args)))
552{
553 std::transform(this->name.begin(), this->name.end(), this->name.begin(), ::toupper);
554}
555
556inline function_ref_expr::function_ref_expr(std::string name, std::vector<std::pair<expr, expr>> arg_pairs)
557 : name(std::move(name))

Callers

nothing calls this directly

Calls 3

transformFunction · 0.50
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected