<H1>Copy</H1>
<I>How does this fall short?</I>

public static &lt;T&gt; void copyFromTo(List&lt;T&gt; from, List&lt;T&gt; to)
{
  for (T element : from)
  {
    to.add(element);
  }
}
