I have a ArrayList
that has other ArrayList
inside it, I got through the following scrip in Groovy:
def i0 = listaTransportadoras.get([0]);
def i1 = listaTransportadoras.get(1);
logger.info(i0.toString());
logger.info(i1.toString());
Select the 1st and 2nd array that are inside this main array, but I need to get the indices that are inside each of these subarrays, if they have a thank you idea.