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

Add Tuple.function[N](Function<? super Tuple[N]<T1, ..., TN>, ? extends R> #217

Open
lukaseder opened this issue Mar 17, 2016 · 0 comments

Comments

@lukaseder
Copy link
Member

This is the inverse operation for #214

interface Tuple {
    static Consumer2<T1, T2> consumer2(Consumer<? super Tuple2<T1, T2>> consumer);
    static <R> Function2<T1, T2, R> function2(Function<? super Tuple2<T1, T2>, ? extends R> function);
}

A lot of methods would be generated this way. Perhaps we should wait with the implementation to see if this is really needed.


See also: #214 (comment)

@lukaseder lukaseder added this to the Version 0.9.11 milestone Mar 17, 2016
TRebirthC added a commit to TRebirthC/jOOL that referenced this issue May 31, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant