Beispiel #1
0
 @Test
 public void shouldTuple() {
   final Function4<Object, Object, Object, Object, Object> f = (o1, o2, o3, o4) -> null;
   final Function1<Tuple4<Object, Object, Object, Object>, Object> tupled = f.tupled();
   assertThat(tupled).isNotNull();
 }