LinkedList vs ArrayList

Two options

public void add(PVector pv) {
  myArray.add(pv);
}

and

public PVector add(PVector pv) {
  myArray.add(pv);
  return pv;
}
1 Like