map<T> method
Map (helper method)
Implementation
List<T> map<T>(IArrayMapFunction<T> mapFunction)
{
List<T> collector = [];
for (int i=0; i < size(); i++)
{
collector.add( mapFunction( get(i) ) );
}
return collector;
}