We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now, there's only two `create' method for ConnectiveExpr classes: one that accepts a ConnectiveExpr_, and one that accepts FieldExpr_.
But, there should be something that accepts an array or other things. So user can write:
And(Tag("..."), Tag("..."))
Create methods cannot accept an array of Expr*, because it cannot be cast to derived classes. So, we should think of a way to solve this.
One solution is to write some overloads that accepts 2, 3, or more arguments. e.g.
And::create(FiledExpr*, FieldExpr*)
The text was updated successfully, but these errors were encountered:
Assign this one to me
Sorry, something went wrong.
Yours now (:
No branches or pull requests
Right now, there's only two `create' method for ConnectiveExpr classes: one that accepts a ConnectiveExpr_, and one that accepts FieldExpr_.
But, there should be something that accepts an array or other things. So user can write:
Create methods cannot accept an array of Expr*, because it cannot be cast to derived classes. So, we should think of a way to solve this.
One solution is to write some overloads that accepts 2, 3, or more arguments. e.g.
And::create(FiledExpr*, FieldExpr*)
The text was updated successfully, but these errors were encountered: