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
For class
@FFITypeAlias("arrow::Result") @FFIGen(templates = @CXXTemplate(cxx = "int", java = "Integer")) @CXXSuperTemplate( type = "arrow.EqualityComparable", template = @CXXTemplate(java = "arrow.Result<T>", cxx = "arrow::Result<T>") ) @CXXHead( system = "arrow/result.h" ) public interface Result<T> extends EqualityComparable<Result<T>>, CXXPointer { }
and class
@FFITypeAlias("arrow::util::EqualityComparable") @FFIGen @CXXHead( system = "arrow/util/compare.h" ) public interface EqualityComparable<T> extends CXXPointer { }
The CXXSuperTemplate doesn't work if they are placed in different java files, but works if been placed in the the file.
CXXSuperTemplate
The text was updated successfully, but these errors were encountered:
@CXXSuperTemplate doesn't work correctly, disable temporarially.
@CXXSuperTemplate
d840557
See also #23. Signed-off-by: Tao He <sighingnow@gmail.com>
No branches or pull requests
For class
and class
The
CXXSuperTemplate
doesn't work if they are placed in different java files, but works if been placed in the the file.The text was updated successfully, but these errors were encountered: