Uses of Interface
org.smallmind.nutsnbolts.util.Mutation
-
Packages that use Mutation Package Description org.smallmind.nutsnbolts.util -
-
Uses of Mutation in org.smallmind.nutsnbolts.util
Methods in org.smallmind.nutsnbolts.util that return Mutation Modifier and Type Method Description default <V> Mutation<T,V>Mutation. andThen(Mutation<? super R,? extends V> after)default <V> Mutation<V,R>Mutation. compose(Mutation<? super V,? extends T> before)Methods in org.smallmind.nutsnbolts.util with parameters of type Mutation Modifier and Type Method Description default <V> Mutation<T,V>Mutation. andThen(Mutation<? super R,? extends V> after)default <V> Mutation<V,R>Mutation. compose(Mutation<? super V,? extends T> before)static <T,U>
U[]MutationUtility. toArray(Collection<T> collection, Class<U> outType, Mutation<? super T,U> mutation)static <T,U>
U[]MutationUtility. toArray(T[] array, Class<U> outType, Mutation<? super T,U> mutation)static <T,U>
List<U>MutationUtility. toList(Collection<T> collection, Mutation<? super T,U> mutation)static <T,U>
List<U>MutationUtility. toList(T[] array, Mutation<? super T,U> mutation)static <T,U>
Set<U>MutationUtility. toSet(Collection<T> collection, Mutation<? super T,U> mutation)static <T,U>
Set<U>MutationUtility. toSet(T[] array, Mutation<? super T,U> mutation)
-