Package io.atlassian.fugue
Interface Effect.Applicant<A>
-
- Type Parameters:
A- the type of thing to supply to the effect.
- All Known Subinterfaces:
Either.Projection<A,B,L,R>,Maybe<A>
- All Known Implementing Classes:
Either.AbstractProjection,Either.LeftProjection,Either.RightProjection,Option,Option.None,Option.Some
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@Deprecated @FunctionalInterface public static interface Effect.Applicant<A>Deprecated.in favour ofIterableA thing upon which side-effects may be applied.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidforeach(Effect<? super A> effect)Deprecated.extend or implementIterable.forEach(Consumer)instead
-