Class AssociativeFunction
- java.lang.Object
-
- com.aquima.interactions.foundation.functions.AssociativeFunction
-
- All Implemented Interfaces:
IListFunction
- Direct Known Subclasses:
Difference
,Intersection
,Union
public abstract class AssociativeFunction extends Object implements IListFunction
Base class for functions that are associative (swapping left and right argument has no effect on the result).- Since:
- 5.0
- Author:
- O. Kerpershoek
-
-
Constructor Summary
Constructors Constructor Description AssociativeFunction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IListValue
process(IListValue first, IRangeValue second)
IListValue
process(IListValue first, ISingleValue second)
IListValue
process(IRangeValue first, ISingleValue second)
-
-
-
Method Detail
-
process
public IListValue process(IRangeValue first, ISingleValue second)
- Specified by:
process
in interfaceIListFunction
-
process
public IListValue process(IListValue first, ISingleValue second)
- Specified by:
process
in interfaceIListFunction
-
process
public IListValue process(IListValue first, IRangeValue second)
- Specified by:
process
in interfaceIListFunction
-
-