Generate specialized abstract iterators for unsigned types

This commit is contained in:
Ilya Gorbunov
2018-04-28 17:34:28 +03:00
parent 188d8ab8dd
commit 4fbc48f83f
2 changed files with 63 additions and 0 deletions
@@ -0,0 +1,41 @@
/*
* Copyright 2010-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
* that can be found in the license/LICENSE.txt file.
*/
// Auto-generated file. DO NOT EDIT!
package kotlin.collections
/** An iterator over a sequence of values of type `UByte`. */
public abstract class UByteIterator : Iterator<UByte> {
override final fun next() = nextUByte()
/** Returns the next value in the sequence without boxing. */
public abstract fun nextUByte(): UByte
}
/** An iterator over a sequence of values of type `UShort`. */
public abstract class UShortIterator : Iterator<UShort> {
override final fun next() = nextUShort()
/** Returns the next value in the sequence without boxing. */
public abstract fun nextUShort(): UShort
}
/** An iterator over a sequence of values of type `UInt`. */
public abstract class UIntIterator : Iterator<UInt> {
override final fun next() = nextUInt()
/** Returns the next value in the sequence without boxing. */
public abstract fun nextUInt(): UInt
}
/** An iterator over a sequence of values of type `ULong`. */
public abstract class ULongIterator : Iterator<ULong> {
override final fun next() = nextULong()
/** Returns the next value in the sequence without boxing. */
public abstract fun nextULong(): ULong
}