asInt method

List<int> asInt()

Implementation

List<int> asInt()
{
  List<int> collector = <int>[];

  for (int i=0; i < size(); i++)
  {
    collector.add( get(i).asInt() );
  }

  return collector;
}