Added missing class description of ByteIterator

This commit is contained in:
Oliver Schulz 2012-05-22 19:21:49 +02:00
parent 5d08cd0b92
commit 18e5b625f4

View file

@ -352,6 +352,10 @@ object ByteIterator {
}
}
/**
* An iterator over a ByteString.
*/
abstract class ByteIterator extends BufferedIterator[Byte] {
def isIdenticalTo(that: Iterator[Byte]): Boolean