Ejemplo n.º 1
0
 /** Returns the first readable vector. */
 public Vec anyVec() {
   if (_col0 != null) return _col0;
   for (Vec v : vecs()) if (v.readable()) return (_col0 = v);
   return null;
 }
Ejemplo n.º 2
0
 /** Returns the first readable vector. */
 public Vec firstReadable() {
   if (_col0 != null) return _col0;
   for (Vec v : _vecs) if (v != null && v.readable()) return (_col0 = v);
   return null;
 }