org.shapelogic.calculation
Interface IndexTransform<In,Out>

Type Parameters:
In - Type of input
Out - Type of output
All Known Implementing Classes:
FunctionTransform

public interface IndexTransform<In,Out>

Transform that know what index in a sequence it is transforming.
So it will take the same index from both the input and the output.
It will do outSeq.get(index) = transform(inSeq.get(index),index).

Author:
Sami Badawi

Method Summary
 Out transform(In input, int index)
           
 

Method Detail

transform

Out transform(In input,
              int index)


Copyright © 2008. All Rights Reserved.