All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.hamnaberg.json.util.F11 Maven / Gradle / Ivy

There is a newer version: 8.0.0
Show newest version

package net.hamnaberg.json.util;

import java.util.function.Function;

@FunctionalInterface
public interface F11 {
   B apply(A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8, A9 a9, A10 a10, A11 a11);

   default Function, B> tupled() {
      return t -> apply(t._1, t._2, t._3, t._4, t._5, t._6, t._7, t._8, t._9, t._10, t._11);
   }
}
    




© 2015 - 2025 Weber Informatics LLC | Privacy Policy