Beispiel #1
0
 /** Create a tuple of iterators, each of which is effectively a copy of iterable. */
 public static PyTuple tee(PyObject iterable, final int n) {
   return new PyTuple(PyTeeIterator.makeTees(iterable, n));
 }