Interface IListFunction
-
- All Known Implementing Classes:
AssociativeFunction
,Difference
,Except
,Intersection
,Union
public interface IListFunction
Interface for list functions that defines all possible permutations of values that can be passed to the function.- Since:
- 5.0
- Author:
- O. Kerpershoek
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IListValue
process(IListValue first, IListValue second)
IListValue
process(IListValue first, IRangeValue second)
IListValue
process(IListValue first, ISingleValue second)
IListValue
process(IRangeValue first, IListValue second)
IListValue
process(IRangeValue first, IRangeValue second)
IListValue
process(IRangeValue first, ISingleValue second)
IListValue
process(ISingleValue first, IListValue second)
IListValue
process(ISingleValue first, IRangeValue second)
IListValue
process(ISingleValue first, ISingleValue second)
-
-
-
Method Detail
-
process
IListValue process(ISingleValue first, ISingleValue second)
-
process
IListValue process(ISingleValue first, IRangeValue second)
-
process
IListValue process(ISingleValue first, IListValue second)
-
process
IListValue process(IRangeValue first, ISingleValue second)
-
process
IListValue process(IRangeValue first, IRangeValue second)
-
process
IListValue process(IRangeValue first, IListValue second)
-
process
IListValue process(IListValue first, ISingleValue second)
-
process
IListValue process(IListValue first, IRangeValue second)
-
process
IListValue process(IListValue first, IListValue second)
-
-