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
transform
Having to cast the result of the generated transform function everywhere is a little cumbersome. For example:
cast
val astExpr = partiql_ast.transform(statement) as partiql_ast.statement
If PIG supported syntax like this, it be better:
val astExpr = partiql_ast.transform<partiql_ast.statement>(statement)
The signature of transform would be something like:
inline fun <reified T: partiql_ast.partiql_ast_node> translate(element: IonElement)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Having to
cast
the result of the generatedtransform
function everywhere is a little cumbersome. For example:If PIG supported syntax like this, it be better:
The signature of transform would be something like:
The text was updated successfully, but these errors were encountered: