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
There is an error in class specification when calling a "map" operation after a call to "par" in HDRImage.
The following code works fine:
Array<Int32> array = image.map(Int32.class, new Map<Int32, Pixel> ...
And the following code presents a type incompatibility with Array, returning a CollectionLike:
Array<Int32> array = image.par().map(Int32.class, new Map<Int32, Pixel> ...
The text was updated successfully, but these errors were encountered:
This error may be the same in filter operation, so it must also be checked.
Sorry, something went wrong.
No branches or pull requests
There is an error in class specification when calling a "map" operation after a call to "par" in HDRImage.
The following code works fine:
And the following code presents a type incompatibility with Array, returning a CollectionLike:
The text was updated successfully, but these errors were encountered: