Ejemplo n.º 1
0
 /**
  * Tries to skip over $n chars and returns the number of chars which were skipped over.
  *
  * @param   long $n The number of chars which shall be skipped
  * @return 	long The number of chars which were skipped
  * @throws	blaze\lang\IOException Is thrown when an IO error occurs or when the underlying ressource is already closed
  */
 public function skip(\long $n)
 {
     return $this->is->skip($n);
 }
Ejemplo n.º 2
0
 public function isClosed()
 {
     return $this->in->isClosed();
 }