Skip to content
New issue

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

Wrong return type in call to map function in parallel HDRImage #7

Open
wcmjunior opened this issue Aug 18, 2016 · 1 comment
Open
Labels

Comments

@wcmjunior
Copy link
Member

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> ...
@wcmjunior wcmjunior added the bug label Aug 18, 2016
@wcmjunior
Copy link
Member Author

This error may be the same in filter operation, so it must also be checked.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant