From f2b4c7fa3e809c1975d11f5194bc1fa6b447b4a5 Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Mon, 24 Feb 2014 19:06:38 +0400 Subject: [PATCH] Fix LoadBuiltinsTest after renaming "jet" to "kotlin" --- compiler/testData/builtin-classes.txt | 2086 ++++++++--------- .../serialization/LoadBuiltinsTest.java | 20 +- 2 files changed, 1056 insertions(+), 1050 deletions(-) diff --git a/compiler/testData/builtin-classes.txt b/compiler/testData/builtin-classes.txt index 12ea1724f69..08d744bdd40 100644 --- a/compiler/testData/builtin-classes.txt +++ b/compiler/testData/builtin-classes.txt @@ -1,10 +1,10 @@ -package-fragment jet +package-fragment kotlin -public fun arrayOfNulls(/*0*/ size: jet.Int): jet.Array -public fun jet.Any?.equals(/*0*/ other: jet.Any?): jet.Boolean -public fun jet.Any?.identityEquals(/*0*/ other: jet.Any?): jet.Boolean -public fun jet.String?.plus(/*0*/ other: jet.Any?): jet.String -public fun jet.Any?.toString(): jet.String +public fun arrayOfNulls(/*0*/ size: kotlin.Int): kotlin.Array +public fun kotlin.Any?.equals(/*0*/ other: kotlin.Any?): kotlin.Boolean +public fun kotlin.Any?.identityEquals(/*0*/ other: kotlin.Any?): kotlin.Boolean +public fun kotlin.String?.plus(/*0*/ other: kotlin.Any?): kotlin.String +public fun kotlin.Any?.toString(): kotlin.String public trait Annotation { } @@ -14,435 +14,435 @@ public open class Any { } public final class Array { - /*primary*/ public constructor Array(/*0*/ size: jet.Int, /*1*/ init: jet.Function1) - public final val indices: jet.IntRange - public final fun (): jet.IntRange - public final val size: jet.Int - public final fun (): jet.Int - public final fun get(/*0*/ index: jet.Int): T - public final fun iterator(): jet.Iterator - public final fun set(/*0*/ index: jet.Int, /*1*/ value: T): jet.Unit + /*primary*/ public constructor Array(/*0*/ size: kotlin.Int, /*1*/ init: kotlin.Function1) + public final val indices: kotlin.IntRange + public final fun (): kotlin.IntRange + public final val size: kotlin.Int + public final fun (): kotlin.Int + public final fun get(/*0*/ index: kotlin.Int): T + public final fun iterator(): kotlin.Iterator + public final fun set(/*0*/ index: kotlin.Int, /*1*/ value: T): kotlin.Unit } -public final class Boolean : jet.Comparable { +public final class Boolean : kotlin.Comparable { /*primary*/ private constructor Boolean() - public final fun and(/*0*/ other: jet.Boolean): jet.Boolean - public open override /*1*/ fun compareTo(/*0*/ other: jet.Boolean): jet.Int - public final fun not(): jet.Boolean - public final fun or(/*0*/ other: jet.Boolean): jet.Boolean - public final fun xor(/*0*/ other: jet.Boolean): jet.Boolean + public final fun and(/*0*/ other: kotlin.Boolean): kotlin.Boolean + public open override /*1*/ fun compareTo(/*0*/ other: kotlin.Boolean): kotlin.Int + public final fun not(): kotlin.Boolean + public final fun or(/*0*/ other: kotlin.Boolean): kotlin.Boolean + public final fun xor(/*0*/ other: kotlin.Boolean): kotlin.Boolean } public final class BooleanArray { - /*primary*/ public constructor BooleanArray(/*0*/ size: jet.Int) - public final val indices: jet.IntRange - public final fun (): jet.IntRange - public final val size: jet.Int - public final fun (): jet.Int - public final fun get(/*0*/ index: jet.Int): jet.Boolean - public final fun iterator(): jet.BooleanIterator - public final fun set(/*0*/ index: jet.Int, /*1*/ value: jet.Boolean): jet.Unit + /*primary*/ public constructor BooleanArray(/*0*/ size: kotlin.Int) + public final val indices: kotlin.IntRange + public final fun (): kotlin.IntRange + public final val size: kotlin.Int + public final fun (): kotlin.Int + public final fun get(/*0*/ index: kotlin.Int): kotlin.Boolean + public final fun iterator(): kotlin.BooleanIterator + public final fun set(/*0*/ index: kotlin.Int, /*1*/ value: kotlin.Boolean): kotlin.Unit } -public abstract class BooleanIterator : jet.Iterator { +public abstract class BooleanIterator : kotlin.Iterator { /*primary*/ public constructor BooleanIterator() - public abstract override /*1*/ /*fake_override*/ fun hasNext(): jet.Boolean - public final override /*1*/ fun next(): jet.Boolean - public abstract fun nextBoolean(): jet.Boolean + public abstract override /*1*/ /*fake_override*/ fun hasNext(): kotlin.Boolean + public final override /*1*/ fun next(): kotlin.Boolean + public abstract fun nextBoolean(): kotlin.Boolean } -public final class Byte : jet.Number, jet.Comparable { +public final class Byte : kotlin.Number, kotlin.Comparable { /*primary*/ private constructor Byte() - public open override /*1*/ fun compareTo(/*0*/ other: jet.Byte): jet.Int - public final fun compareTo(/*0*/ other: jet.Char): jet.Int - public final fun compareTo(/*0*/ other: jet.Double): jet.Int - public final fun compareTo(/*0*/ other: jet.Float): jet.Int - public final fun compareTo(/*0*/ other: jet.Int): jet.Int - public final fun compareTo(/*0*/ other: jet.Long): jet.Int - public final fun compareTo(/*0*/ other: jet.Short): jet.Int - public final fun dec(): jet.Byte - public final fun div(/*0*/ other: jet.Byte): jet.Int - public final fun div(/*0*/ other: jet.Char): jet.Int - public final fun div(/*0*/ other: jet.Double): jet.Double - public final fun div(/*0*/ other: jet.Float): jet.Float - public final fun div(/*0*/ other: jet.Int): jet.Int - public final fun div(/*0*/ other: jet.Long): jet.Long - public final fun div(/*0*/ other: jet.Short): jet.Int - public final fun inc(): jet.Byte - public final fun minus(): jet.Int - public final fun minus(/*0*/ other: jet.Byte): jet.Int - public final fun minus(/*0*/ other: jet.Char): jet.Int - public final fun minus(/*0*/ other: jet.Double): jet.Double - public final fun minus(/*0*/ other: jet.Float): jet.Float - public final fun minus(/*0*/ other: jet.Int): jet.Int - public final fun minus(/*0*/ other: jet.Long): jet.Long - public final fun minus(/*0*/ other: jet.Short): jet.Int - public final fun mod(/*0*/ other: jet.Byte): jet.Int - public final fun mod(/*0*/ other: jet.Char): jet.Int - public final fun mod(/*0*/ other: jet.Double): jet.Double - public final fun mod(/*0*/ other: jet.Float): jet.Float - public final fun mod(/*0*/ other: jet.Int): jet.Int - public final fun mod(/*0*/ other: jet.Long): jet.Long - public final fun mod(/*0*/ other: jet.Short): jet.Int - public final fun plus(): jet.Int - public final fun plus(/*0*/ other: jet.Byte): jet.Int - public final fun plus(/*0*/ other: jet.Char): jet.Int - public final fun plus(/*0*/ other: jet.Double): jet.Double - public final fun plus(/*0*/ other: jet.Float): jet.Float - public final fun plus(/*0*/ other: jet.Int): jet.Int - public final fun plus(/*0*/ other: jet.Long): jet.Long - public final fun plus(/*0*/ other: jet.Short): jet.Int - public final fun rangeTo(/*0*/ other: jet.Byte): jet.ByteRange - public final fun rangeTo(/*0*/ other: jet.Char): jet.CharRange - public final fun rangeTo(/*0*/ other: jet.Double): jet.DoubleRange - public final fun rangeTo(/*0*/ other: jet.Float): jet.FloatRange - public final fun rangeTo(/*0*/ other: jet.Int): jet.IntRange - public final fun rangeTo(/*0*/ other: jet.Long): jet.LongRange - public final fun rangeTo(/*0*/ other: jet.Short): jet.ShortRange - public final fun times(/*0*/ other: jet.Byte): jet.Int - public final fun times(/*0*/ other: jet.Char): jet.Int - public final fun times(/*0*/ other: jet.Double): jet.Double - public final fun times(/*0*/ other: jet.Float): jet.Float - public final fun times(/*0*/ other: jet.Int): jet.Int - public final fun times(/*0*/ other: jet.Long): jet.Long - public final fun times(/*0*/ other: jet.Short): jet.Int - public open override /*1*/ fun toByte(): jet.Byte - public open override /*1*/ fun toChar(): jet.Char - public open override /*1*/ fun toDouble(): jet.Double - public open override /*1*/ fun toFloat(): jet.Float - public open override /*1*/ fun toInt(): jet.Int - public open override /*1*/ fun toLong(): jet.Long - public open override /*1*/ fun toShort(): jet.Short + public open override /*1*/ fun compareTo(/*0*/ other: kotlin.Byte): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Char): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Double): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Float): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Int): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Long): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Short): kotlin.Int + public final fun dec(): kotlin.Byte + public final fun div(/*0*/ other: kotlin.Byte): kotlin.Int + public final fun div(/*0*/ other: kotlin.Char): kotlin.Int + public final fun div(/*0*/ other: kotlin.Double): kotlin.Double + public final fun div(/*0*/ other: kotlin.Float): kotlin.Float + public final fun div(/*0*/ other: kotlin.Int): kotlin.Int + public final fun div(/*0*/ other: kotlin.Long): kotlin.Long + public final fun div(/*0*/ other: kotlin.Short): kotlin.Int + public final fun inc(): kotlin.Byte + public final fun minus(): kotlin.Int + public final fun minus(/*0*/ other: kotlin.Byte): kotlin.Int + public final fun minus(/*0*/ other: kotlin.Char): kotlin.Int + public final fun minus(/*0*/ other: kotlin.Double): kotlin.Double + public final fun minus(/*0*/ other: kotlin.Float): kotlin.Float + public final fun minus(/*0*/ other: kotlin.Int): kotlin.Int + public final fun minus(/*0*/ other: kotlin.Long): kotlin.Long + public final fun minus(/*0*/ other: kotlin.Short): kotlin.Int + public final fun mod(/*0*/ other: kotlin.Byte): kotlin.Int + public final fun mod(/*0*/ other: kotlin.Char): kotlin.Int + public final fun mod(/*0*/ other: kotlin.Double): kotlin.Double + public final fun mod(/*0*/ other: kotlin.Float): kotlin.Float + public final fun mod(/*0*/ other: kotlin.Int): kotlin.Int + public final fun mod(/*0*/ other: kotlin.Long): kotlin.Long + public final fun mod(/*0*/ other: kotlin.Short): kotlin.Int + public final fun plus(): kotlin.Int + public final fun plus(/*0*/ other: kotlin.Byte): kotlin.Int + public final fun plus(/*0*/ other: kotlin.Char): kotlin.Int + public final fun plus(/*0*/ other: kotlin.Double): kotlin.Double + public final fun plus(/*0*/ other: kotlin.Float): kotlin.Float + public final fun plus(/*0*/ other: kotlin.Int): kotlin.Int + public final fun plus(/*0*/ other: kotlin.Long): kotlin.Long + public final fun plus(/*0*/ other: kotlin.Short): kotlin.Int + public final fun rangeTo(/*0*/ other: kotlin.Byte): kotlin.ByteRange + public final fun rangeTo(/*0*/ other: kotlin.Char): kotlin.CharRange + public final fun rangeTo(/*0*/ other: kotlin.Double): kotlin.DoubleRange + public final fun rangeTo(/*0*/ other: kotlin.Float): kotlin.FloatRange + public final fun rangeTo(/*0*/ other: kotlin.Int): kotlin.IntRange + public final fun rangeTo(/*0*/ other: kotlin.Long): kotlin.LongRange + public final fun rangeTo(/*0*/ other: kotlin.Short): kotlin.ShortRange + public final fun times(/*0*/ other: kotlin.Byte): kotlin.Int + public final fun times(/*0*/ other: kotlin.Char): kotlin.Int + public final fun times(/*0*/ other: kotlin.Double): kotlin.Double + public final fun times(/*0*/ other: kotlin.Float): kotlin.Float + public final fun times(/*0*/ other: kotlin.Int): kotlin.Int + public final fun times(/*0*/ other: kotlin.Long): kotlin.Long + public final fun times(/*0*/ other: kotlin.Short): kotlin.Int + public open override /*1*/ fun toByte(): kotlin.Byte + public open override /*1*/ fun toChar(): kotlin.Char + public open override /*1*/ fun toDouble(): kotlin.Double + public open override /*1*/ fun toFloat(): kotlin.Float + public open override /*1*/ fun toInt(): kotlin.Int + public open override /*1*/ fun toLong(): kotlin.Long + public open override /*1*/ fun toShort(): kotlin.Short } public final class ByteArray { - /*primary*/ public constructor ByteArray(/*0*/ size: jet.Int) - public final val indices: jet.IntRange - public final fun (): jet.IntRange - public final val size: jet.Int - public final fun (): jet.Int - public final fun get(/*0*/ index: jet.Int): jet.Byte - public final fun iterator(): jet.ByteIterator - public final fun set(/*0*/ index: jet.Int, /*1*/ value: jet.Byte): jet.Unit + /*primary*/ public constructor ByteArray(/*0*/ size: kotlin.Int) + public final val indices: kotlin.IntRange + public final fun (): kotlin.IntRange + public final val size: kotlin.Int + public final fun (): kotlin.Int + public final fun get(/*0*/ index: kotlin.Int): kotlin.Byte + public final fun iterator(): kotlin.ByteIterator + public final fun set(/*0*/ index: kotlin.Int, /*1*/ value: kotlin.Byte): kotlin.Unit } -public abstract class ByteIterator : jet.Iterator { +public abstract class ByteIterator : kotlin.Iterator { /*primary*/ public constructor ByteIterator() - public abstract override /*1*/ /*fake_override*/ fun hasNext(): jet.Boolean - public final override /*1*/ fun next(): jet.Byte - public abstract fun nextByte(): jet.Byte + public abstract override /*1*/ /*fake_override*/ fun hasNext(): kotlin.Boolean + public final override /*1*/ fun next(): kotlin.Byte + public abstract fun nextByte(): kotlin.Byte } -public final class ByteProgression : jet.Progression { - /*primary*/ public constructor ByteProgression(/*0*/ start: jet.Byte, /*1*/ end: jet.Byte, /*2*/ increment: jet.Int) - public open override /*1*/ val end: jet.Byte - public open override /*1*/ fun (): jet.Byte - public open override /*1*/ val increment: jet.Int - public open override /*1*/ fun (): jet.Int - public open override /*1*/ val start: jet.Byte - public open override /*1*/ fun (): jet.Byte - public open override /*1*/ fun iterator(): jet.ByteIterator +public final class ByteProgression : kotlin.Progression { + /*primary*/ public constructor ByteProgression(/*0*/ start: kotlin.Byte, /*1*/ end: kotlin.Byte, /*2*/ increment: kotlin.Int) + public open override /*1*/ val end: kotlin.Byte + public open override /*1*/ fun (): kotlin.Byte + public open override /*1*/ val increment: kotlin.Int + public open override /*1*/ fun (): kotlin.Int + public open override /*1*/ val start: kotlin.Byte + public open override /*1*/ fun (): kotlin.Byte + public open override /*1*/ fun iterator(): kotlin.ByteIterator } -internal final class ByteProgressionIterator : jet.ByteIterator { - /*primary*/ public constructor ByteProgressionIterator(/*0*/ start: jet.Byte, /*1*/ end: jet.Byte, /*2*/ increment: jet.Int) - private final val finalElement: jet.Byte - private final fun (): jet.Byte - private final var hasNext: jet.Boolean - private final fun (): jet.Boolean - private final fun (/*0*/ : jet.Boolean): jet.Unit - internal final val increment: jet.Int - internal final fun (): jet.Int - private final var next: jet.Int - private final fun (): jet.Int - private final fun (/*0*/ : jet.Int): jet.Unit - public open override /*1*/ fun hasNext(): jet.Boolean - public final override /*1*/ /*fake_override*/ fun next(): jet.Byte - public open override /*1*/ fun nextByte(): jet.Byte +internal final class ByteProgressionIterator : kotlin.ByteIterator { + /*primary*/ public constructor ByteProgressionIterator(/*0*/ start: kotlin.Byte, /*1*/ end: kotlin.Byte, /*2*/ increment: kotlin.Int) + private final val finalElement: kotlin.Byte + private final fun (): kotlin.Byte + private final var hasNext: kotlin.Boolean + private final fun (): kotlin.Boolean + private final fun (/*0*/ : kotlin.Boolean): kotlin.Unit + internal final val increment: kotlin.Int + internal final fun (): kotlin.Int + private final var next: kotlin.Int + private final fun (): kotlin.Int + private final fun (/*0*/ : kotlin.Int): kotlin.Unit + public open override /*1*/ fun hasNext(): kotlin.Boolean + public final override /*1*/ /*fake_override*/ fun next(): kotlin.Byte + public open override /*1*/ fun nextByte(): kotlin.Byte } -public final class ByteRange : jet.Range, jet.Progression { - /*primary*/ public constructor ByteRange(/*0*/ start: jet.Byte, /*1*/ end: jet.Byte) - public open override /*2*/ val end: jet.Byte - public open override /*2*/ fun (): jet.Byte - public open override /*1*/ val increment: jet.Int - public open override /*1*/ fun (): jet.Int - public open override /*2*/ val start: jet.Byte - public open override /*2*/ fun (): jet.Byte - public open override /*1*/ fun contains(/*0*/ item: jet.Byte): jet.Boolean - public open override /*1*/ fun iterator(): jet.ByteIterator +public final class ByteRange : kotlin.Range, kotlin.Progression { + /*primary*/ public constructor ByteRange(/*0*/ start: kotlin.Byte, /*1*/ end: kotlin.Byte) + public open override /*2*/ val end: kotlin.Byte + public open override /*2*/ fun (): kotlin.Byte + public open override /*1*/ val increment: kotlin.Int + public open override /*1*/ fun (): kotlin.Int + public open override /*2*/ val start: kotlin.Byte + public open override /*2*/ fun (): kotlin.Byte + public open override /*1*/ fun contains(/*0*/ item: kotlin.Byte): kotlin.Boolean + public open override /*1*/ fun iterator(): kotlin.ByteIterator public class object { /*primary*/ private constructor () - public final val EMPTY: jet.ByteRange - public final fun (): jet.ByteRange + public final val EMPTY: kotlin.ByteRange + public final fun (): kotlin.ByteRange } } -public final class Char : jet.Comparable { +public final class Char : kotlin.Comparable { /*primary*/ private constructor Char() - public final fun compareTo(/*0*/ other: jet.Byte): jet.Int - public open override /*1*/ fun compareTo(/*0*/ other: jet.Char): jet.Int - public final fun compareTo(/*0*/ other: jet.Double): jet.Int - public final fun compareTo(/*0*/ other: jet.Float): jet.Int - public final fun compareTo(/*0*/ other: jet.Int): jet.Int - public final fun compareTo(/*0*/ other: jet.Long): jet.Int - public final fun compareTo(/*0*/ other: jet.Short): jet.Int - public final fun dec(): jet.Char - public final fun div(/*0*/ other: jet.Byte): jet.Int - public final fun div(/*0*/ other: jet.Double): jet.Double - public final fun div(/*0*/ other: jet.Float): jet.Float - public final fun div(/*0*/ other: jet.Int): jet.Int - public final fun div(/*0*/ other: jet.Long): jet.Long - public final fun div(/*0*/ other: jet.Short): jet.Int - public final fun inc(): jet.Char - public final fun minus(): jet.Int - public final fun minus(/*0*/ other: jet.Byte): jet.Int - public final fun minus(/*0*/ other: jet.Char): jet.Int - public final fun minus(/*0*/ other: jet.Double): jet.Double - public final fun minus(/*0*/ other: jet.Float): jet.Float - public final fun minus(/*0*/ other: jet.Int): jet.Int - public final fun minus(/*0*/ other: jet.Long): jet.Long - public final fun minus(/*0*/ other: jet.Short): jet.Int - public final fun mod(/*0*/ other: jet.Byte): jet.Int - public final fun mod(/*0*/ other: jet.Double): jet.Double - public final fun mod(/*0*/ other: jet.Float): jet.Float - public final fun mod(/*0*/ other: jet.Int): jet.Int - public final fun mod(/*0*/ other: jet.Long): jet.Long - public final fun mod(/*0*/ other: jet.Short): jet.Int - public final fun plus(): jet.Int - public final fun plus(/*0*/ other: jet.Byte): jet.Int - public final fun plus(/*0*/ other: jet.Double): jet.Double - public final fun plus(/*0*/ other: jet.Float): jet.Float - public final fun plus(/*0*/ other: jet.Int): jet.Int - public final fun plus(/*0*/ other: jet.Long): jet.Long - public final fun plus(/*0*/ other: jet.Short): jet.Int - public final fun rangeTo(/*0*/ other: jet.Char): jet.CharRange - public final fun times(/*0*/ other: jet.Byte): jet.Int - public final fun times(/*0*/ other: jet.Double): jet.Double - public final fun times(/*0*/ other: jet.Float): jet.Float - public final fun times(/*0*/ other: jet.Int): jet.Int - public final fun times(/*0*/ other: jet.Long): jet.Long - public final fun times(/*0*/ other: jet.Short): jet.Int - public final fun toByte(): jet.Byte - public final fun toChar(): jet.Char - public final fun toDouble(): jet.Double - public final fun toFloat(): jet.Float - public final fun toInt(): jet.Int - public final fun toLong(): jet.Long - public final fun toShort(): jet.Short + public final fun compareTo(/*0*/ other: kotlin.Byte): kotlin.Int + public open override /*1*/ fun compareTo(/*0*/ other: kotlin.Char): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Double): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Float): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Int): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Long): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Short): kotlin.Int + public final fun dec(): kotlin.Char + public final fun div(/*0*/ other: kotlin.Byte): kotlin.Int + public final fun div(/*0*/ other: kotlin.Double): kotlin.Double + public final fun div(/*0*/ other: kotlin.Float): kotlin.Float + public final fun div(/*0*/ other: kotlin.Int): kotlin.Int + public final fun div(/*0*/ other: kotlin.Long): kotlin.Long + public final fun div(/*0*/ other: kotlin.Short): kotlin.Int + public final fun inc(): kotlin.Char + public final fun minus(): kotlin.Int + public final fun minus(/*0*/ other: kotlin.Byte): kotlin.Int + public final fun minus(/*0*/ other: kotlin.Char): kotlin.Int + public final fun minus(/*0*/ other: kotlin.Double): kotlin.Double + public final fun minus(/*0*/ other: kotlin.Float): kotlin.Float + public final fun minus(/*0*/ other: kotlin.Int): kotlin.Int + public final fun minus(/*0*/ other: kotlin.Long): kotlin.Long + public final fun minus(/*0*/ other: kotlin.Short): kotlin.Int + public final fun mod(/*0*/ other: kotlin.Byte): kotlin.Int + public final fun mod(/*0*/ other: kotlin.Double): kotlin.Double + public final fun mod(/*0*/ other: kotlin.Float): kotlin.Float + public final fun mod(/*0*/ other: kotlin.Int): kotlin.Int + public final fun mod(/*0*/ other: kotlin.Long): kotlin.Long + public final fun mod(/*0*/ other: kotlin.Short): kotlin.Int + public final fun plus(): kotlin.Int + public final fun plus(/*0*/ other: kotlin.Byte): kotlin.Int + public final fun plus(/*0*/ other: kotlin.Double): kotlin.Double + public final fun plus(/*0*/ other: kotlin.Float): kotlin.Float + public final fun plus(/*0*/ other: kotlin.Int): kotlin.Int + public final fun plus(/*0*/ other: kotlin.Long): kotlin.Long + public final fun plus(/*0*/ other: kotlin.Short): kotlin.Int + public final fun rangeTo(/*0*/ other: kotlin.Char): kotlin.CharRange + public final fun times(/*0*/ other: kotlin.Byte): kotlin.Int + public final fun times(/*0*/ other: kotlin.Double): kotlin.Double + public final fun times(/*0*/ other: kotlin.Float): kotlin.Float + public final fun times(/*0*/ other: kotlin.Int): kotlin.Int + public final fun times(/*0*/ other: kotlin.Long): kotlin.Long + public final fun times(/*0*/ other: kotlin.Short): kotlin.Int + public final fun toByte(): kotlin.Byte + public final fun toChar(): kotlin.Char + public final fun toDouble(): kotlin.Double + public final fun toFloat(): kotlin.Float + public final fun toInt(): kotlin.Int + public final fun toLong(): kotlin.Long + public final fun toShort(): kotlin.Short } public final class CharArray { - /*primary*/ public constructor CharArray(/*0*/ size: jet.Int) - public final val indices: jet.IntRange - public final fun (): jet.IntRange - public final val size: jet.Int - public final fun (): jet.Int - public final fun get(/*0*/ index: jet.Int): jet.Char - public final fun iterator(): jet.CharIterator - public final fun set(/*0*/ index: jet.Int, /*1*/ value: jet.Char): jet.Unit + /*primary*/ public constructor CharArray(/*0*/ size: kotlin.Int) + public final val indices: kotlin.IntRange + public final fun (): kotlin.IntRange + public final val size: kotlin.Int + public final fun (): kotlin.Int + public final fun get(/*0*/ index: kotlin.Int): kotlin.Char + public final fun iterator(): kotlin.CharIterator + public final fun set(/*0*/ index: kotlin.Int, /*1*/ value: kotlin.Char): kotlin.Unit } -public abstract class CharIterator : jet.Iterator { +public abstract class CharIterator : kotlin.Iterator { /*primary*/ public constructor CharIterator() - public abstract override /*1*/ /*fake_override*/ fun hasNext(): jet.Boolean - public final override /*1*/ fun next(): jet.Char - public abstract fun nextChar(): jet.Char + public abstract override /*1*/ /*fake_override*/ fun hasNext(): kotlin.Boolean + public final override /*1*/ fun next(): kotlin.Char + public abstract fun nextChar(): kotlin.Char } -public final class CharProgression : jet.Progression { - /*primary*/ public constructor CharProgression(/*0*/ start: jet.Char, /*1*/ end: jet.Char, /*2*/ increment: jet.Int) - public open override /*1*/ val end: jet.Char - public open override /*1*/ fun (): jet.Char - public open override /*1*/ val increment: jet.Int - public open override /*1*/ fun (): jet.Int - public open override /*1*/ val start: jet.Char - public open override /*1*/ fun (): jet.Char - public open override /*1*/ fun iterator(): jet.CharIterator +public final class CharProgression : kotlin.Progression { + /*primary*/ public constructor CharProgression(/*0*/ start: kotlin.Char, /*1*/ end: kotlin.Char, /*2*/ increment: kotlin.Int) + public open override /*1*/ val end: kotlin.Char + public open override /*1*/ fun (): kotlin.Char + public open override /*1*/ val increment: kotlin.Int + public open override /*1*/ fun (): kotlin.Int + public open override /*1*/ val start: kotlin.Char + public open override /*1*/ fun (): kotlin.Char + public open override /*1*/ fun iterator(): kotlin.CharIterator } -internal final class CharProgressionIterator : jet.CharIterator { - /*primary*/ public constructor CharProgressionIterator(/*0*/ start: jet.Char, /*1*/ end: jet.Char, /*2*/ increment: jet.Int) - private final val finalElement: jet.Char - private final fun (): jet.Char - private final var hasNext: jet.Boolean - private final fun (): jet.Boolean - private final fun (/*0*/ : jet.Boolean): jet.Unit - internal final val increment: jet.Int - internal final fun (): jet.Int - private final var next: jet.Int - private final fun (): jet.Int - private final fun (/*0*/ : jet.Int): jet.Unit - public open override /*1*/ fun hasNext(): jet.Boolean - public final override /*1*/ /*fake_override*/ fun next(): jet.Char - public open override /*1*/ fun nextChar(): jet.Char +internal final class CharProgressionIterator : kotlin.CharIterator { + /*primary*/ public constructor CharProgressionIterator(/*0*/ start: kotlin.Char, /*1*/ end: kotlin.Char, /*2*/ increment: kotlin.Int) + private final val finalElement: kotlin.Char + private final fun (): kotlin.Char + private final var hasNext: kotlin.Boolean + private final fun (): kotlin.Boolean + private final fun (/*0*/ : kotlin.Boolean): kotlin.Unit + internal final val increment: kotlin.Int + internal final fun (): kotlin.Int + private final var next: kotlin.Int + private final fun (): kotlin.Int + private final fun (/*0*/ : kotlin.Int): kotlin.Unit + public open override /*1*/ fun hasNext(): kotlin.Boolean + public final override /*1*/ /*fake_override*/ fun next(): kotlin.Char + public open override /*1*/ fun nextChar(): kotlin.Char } -public final class CharRange : jet.Range, jet.Progression { - /*primary*/ public constructor CharRange(/*0*/ start: jet.Char, /*1*/ end: jet.Char) - public open override /*2*/ val end: jet.Char - public open override /*2*/ fun (): jet.Char - public open override /*1*/ val increment: jet.Int - public open override /*1*/ fun (): jet.Int - public open override /*2*/ val start: jet.Char - public open override /*2*/ fun (): jet.Char - public open override /*1*/ fun contains(/*0*/ item: jet.Char): jet.Boolean - public open override /*1*/ fun iterator(): jet.CharIterator +public final class CharRange : kotlin.Range, kotlin.Progression { + /*primary*/ public constructor CharRange(/*0*/ start: kotlin.Char, /*1*/ end: kotlin.Char) + public open override /*2*/ val end: kotlin.Char + public open override /*2*/ fun (): kotlin.Char + public open override /*1*/ val increment: kotlin.Int + public open override /*1*/ fun (): kotlin.Int + public open override /*2*/ val start: kotlin.Char + public open override /*2*/ fun (): kotlin.Char + public open override /*1*/ fun contains(/*0*/ item: kotlin.Char): kotlin.Boolean + public open override /*1*/ fun iterator(): kotlin.CharIterator public class object { /*primary*/ private constructor () - public final val EMPTY: jet.CharRange - public final fun (): jet.CharRange + public final val EMPTY: kotlin.CharRange + public final fun (): kotlin.CharRange } } public trait CharSequence { - public abstract val length: jet.Int - public abstract fun (): jet.Int - public abstract fun get(/*0*/ index: jet.Int): jet.Char + public abstract val length: kotlin.Int + public abstract fun (): kotlin.Int + public abstract fun get(/*0*/ index: kotlin.Int): kotlin.Char } -public trait Collection : jet.Iterable { - public abstract fun contains(/*0*/ o: jet.Any?): jet.Boolean - public abstract fun containsAll(/*0*/ c: jet.Collection): jet.Boolean - public abstract fun isEmpty(): jet.Boolean - public abstract override /*1*/ fun iterator(): jet.Iterator - public abstract fun size(): jet.Int +public trait Collection : kotlin.Iterable { + public abstract fun contains(/*0*/ o: kotlin.Any?): kotlin.Boolean + public abstract fun containsAll(/*0*/ c: kotlin.Collection): kotlin.Boolean + public abstract fun isEmpty(): kotlin.Boolean + public abstract override /*1*/ fun iterator(): kotlin.Iterator + public abstract fun size(): kotlin.Int } public trait Comparable { - public abstract fun compareTo(/*0*/ other: T): jet.Int + public abstract fun compareTo(/*0*/ other: T): kotlin.Int } -public final class Double : jet.Number, jet.Comparable { +public final class Double : kotlin.Number, kotlin.Comparable { /*primary*/ private constructor Double() - public final fun compareTo(/*0*/ other: jet.Byte): jet.Int - public final fun compareTo(/*0*/ other: jet.Char): jet.Int - public open override /*1*/ fun compareTo(/*0*/ other: jet.Double): jet.Int - public final fun compareTo(/*0*/ other: jet.Float): jet.Int - public final fun compareTo(/*0*/ other: jet.Int): jet.Int - public final fun compareTo(/*0*/ other: jet.Long): jet.Int - public final fun compareTo(/*0*/ other: jet.Short): jet.Int - public final fun dec(): jet.Double - public final fun div(/*0*/ other: jet.Byte): jet.Double - public final fun div(/*0*/ other: jet.Char): jet.Double - public final fun div(/*0*/ other: jet.Double): jet.Double - public final fun div(/*0*/ other: jet.Float): jet.Double - public final fun div(/*0*/ other: jet.Int): jet.Double - public final fun div(/*0*/ other: jet.Long): jet.Double - public final fun div(/*0*/ other: jet.Short): jet.Double - public final fun inc(): jet.Double - public final fun minus(): jet.Double - public final fun minus(/*0*/ other: jet.Byte): jet.Double - public final fun minus(/*0*/ other: jet.Char): jet.Double - public final fun minus(/*0*/ other: jet.Double): jet.Double - public final fun minus(/*0*/ other: jet.Float): jet.Double - public final fun minus(/*0*/ other: jet.Int): jet.Double - public final fun minus(/*0*/ other: jet.Long): jet.Double - public final fun minus(/*0*/ other: jet.Short): jet.Double - public final fun mod(/*0*/ other: jet.Byte): jet.Double - public final fun mod(/*0*/ other: jet.Double): jet.Double - public final fun mod(/*0*/ other: jet.Float): jet.Double - public final fun mod(/*0*/ other: jet.Int): jet.Double - public final fun mod(/*0*/ other: jet.Long): jet.Double - public final fun mod(/*0*/ other: jet.Short): jet.Double - public final fun plus(): jet.Double - public final fun plus(/*0*/ other: jet.Byte): jet.Double - public final fun plus(/*0*/ other: jet.Char): jet.Double - public final fun plus(/*0*/ other: jet.Double): jet.Double - public final fun plus(/*0*/ other: jet.Float): jet.Double - public final fun plus(/*0*/ other: jet.Int): jet.Double - public final fun plus(/*0*/ other: jet.Long): jet.Double - public final fun plus(/*0*/ other: jet.Short): jet.Double - public final fun rangeTo(/*0*/ other: jet.Byte): jet.DoubleRange - public final fun rangeTo(/*0*/ other: jet.Char): jet.DoubleRange - public final fun rangeTo(/*0*/ other: jet.Double): jet.DoubleRange - public final fun rangeTo(/*0*/ other: jet.Float): jet.DoubleRange - public final fun rangeTo(/*0*/ other: jet.Int): jet.DoubleRange - public final fun rangeTo(/*0*/ other: jet.Long): jet.DoubleRange - public final fun rangeTo(/*0*/ other: jet.Short): jet.DoubleRange - public final fun times(/*0*/ other: jet.Byte): jet.Double - public final fun times(/*0*/ other: jet.Char): jet.Double - public final fun times(/*0*/ other: jet.Double): jet.Double - public final fun times(/*0*/ other: jet.Float): jet.Double - public final fun times(/*0*/ other: jet.Int): jet.Double - public final fun times(/*0*/ other: jet.Long): jet.Double - public final fun times(/*0*/ other: jet.Short): jet.Double - public open override /*1*/ fun toByte(): jet.Byte - public open override /*1*/ fun toChar(): jet.Char - public open override /*1*/ fun toDouble(): jet.Double - public open override /*1*/ fun toFloat(): jet.Float - public open override /*1*/ fun toInt(): jet.Int - public open override /*1*/ fun toLong(): jet.Long - public open override /*1*/ fun toShort(): jet.Short + public final fun compareTo(/*0*/ other: kotlin.Byte): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Char): kotlin.Int + public open override /*1*/ fun compareTo(/*0*/ other: kotlin.Double): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Float): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Int): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Long): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Short): kotlin.Int + public final fun dec(): kotlin.Double + public final fun div(/*0*/ other: kotlin.Byte): kotlin.Double + public final fun div(/*0*/ other: kotlin.Char): kotlin.Double + public final fun div(/*0*/ other: kotlin.Double): kotlin.Double + public final fun div(/*0*/ other: kotlin.Float): kotlin.Double + public final fun div(/*0*/ other: kotlin.Int): kotlin.Double + public final fun div(/*0*/ other: kotlin.Long): kotlin.Double + public final fun div(/*0*/ other: kotlin.Short): kotlin.Double + public final fun inc(): kotlin.Double + public final fun minus(): kotlin.Double + public final fun minus(/*0*/ other: kotlin.Byte): kotlin.Double + public final fun minus(/*0*/ other: kotlin.Char): kotlin.Double + public final fun minus(/*0*/ other: kotlin.Double): kotlin.Double + public final fun minus(/*0*/ other: kotlin.Float): kotlin.Double + public final fun minus(/*0*/ other: kotlin.Int): kotlin.Double + public final fun minus(/*0*/ other: kotlin.Long): kotlin.Double + public final fun minus(/*0*/ other: kotlin.Short): kotlin.Double + public final fun mod(/*0*/ other: kotlin.Byte): kotlin.Double + public final fun mod(/*0*/ other: kotlin.Double): kotlin.Double + public final fun mod(/*0*/ other: kotlin.Float): kotlin.Double + public final fun mod(/*0*/ other: kotlin.Int): kotlin.Double + public final fun mod(/*0*/ other: kotlin.Long): kotlin.Double + public final fun mod(/*0*/ other: kotlin.Short): kotlin.Double + public final fun plus(): kotlin.Double + public final fun plus(/*0*/ other: kotlin.Byte): kotlin.Double + public final fun plus(/*0*/ other: kotlin.Char): kotlin.Double + public final fun plus(/*0*/ other: kotlin.Double): kotlin.Double + public final fun plus(/*0*/ other: kotlin.Float): kotlin.Double + public final fun plus(/*0*/ other: kotlin.Int): kotlin.Double + public final fun plus(/*0*/ other: kotlin.Long): kotlin.Double + public final fun plus(/*0*/ other: kotlin.Short): kotlin.Double + public final fun rangeTo(/*0*/ other: kotlin.Byte): kotlin.DoubleRange + public final fun rangeTo(/*0*/ other: kotlin.Char): kotlin.DoubleRange + public final fun rangeTo(/*0*/ other: kotlin.Double): kotlin.DoubleRange + public final fun rangeTo(/*0*/ other: kotlin.Float): kotlin.DoubleRange + public final fun rangeTo(/*0*/ other: kotlin.Int): kotlin.DoubleRange + public final fun rangeTo(/*0*/ other: kotlin.Long): kotlin.DoubleRange + public final fun rangeTo(/*0*/ other: kotlin.Short): kotlin.DoubleRange + public final fun times(/*0*/ other: kotlin.Byte): kotlin.Double + public final fun times(/*0*/ other: kotlin.Char): kotlin.Double + public final fun times(/*0*/ other: kotlin.Double): kotlin.Double + public final fun times(/*0*/ other: kotlin.Float): kotlin.Double + public final fun times(/*0*/ other: kotlin.Int): kotlin.Double + public final fun times(/*0*/ other: kotlin.Long): kotlin.Double + public final fun times(/*0*/ other: kotlin.Short): kotlin.Double + public open override /*1*/ fun toByte(): kotlin.Byte + public open override /*1*/ fun toChar(): kotlin.Char + public open override /*1*/ fun toDouble(): kotlin.Double + public open override /*1*/ fun toFloat(): kotlin.Float + public open override /*1*/ fun toInt(): kotlin.Int + public open override /*1*/ fun toLong(): kotlin.Long + public open override /*1*/ fun toShort(): kotlin.Short } public final class DoubleArray { - /*primary*/ public constructor DoubleArray(/*0*/ size: jet.Int) - public final val indices: jet.IntRange - public final fun (): jet.IntRange - public final val size: jet.Int - public final fun (): jet.Int - public final fun get(/*0*/ index: jet.Int): jet.Double - public final fun iterator(): jet.DoubleIterator - public final fun set(/*0*/ index: jet.Int, /*1*/ value: jet.Double): jet.Unit + /*primary*/ public constructor DoubleArray(/*0*/ size: kotlin.Int) + public final val indices: kotlin.IntRange + public final fun (): kotlin.IntRange + public final val size: kotlin.Int + public final fun (): kotlin.Int + public final fun get(/*0*/ index: kotlin.Int): kotlin.Double + public final fun iterator(): kotlin.DoubleIterator + public final fun set(/*0*/ index: kotlin.Int, /*1*/ value: kotlin.Double): kotlin.Unit } -public abstract class DoubleIterator : jet.Iterator { +public abstract class DoubleIterator : kotlin.Iterator { /*primary*/ public constructor DoubleIterator() - public abstract override /*1*/ /*fake_override*/ fun hasNext(): jet.Boolean - public final override /*1*/ fun next(): jet.Double - public abstract fun nextDouble(): jet.Double + public abstract override /*1*/ /*fake_override*/ fun hasNext(): kotlin.Boolean + public final override /*1*/ fun next(): kotlin.Double + public abstract fun nextDouble(): kotlin.Double } -public final class DoubleProgression : jet.Progression { - /*primary*/ public constructor DoubleProgression(/*0*/ start: jet.Double, /*1*/ end: jet.Double, /*2*/ increment: jet.Double) - public open override /*1*/ val end: jet.Double - public open override /*1*/ fun (): jet.Double - public open override /*1*/ val increment: jet.Double - public open override /*1*/ fun (): jet.Double - public open override /*1*/ val start: jet.Double - public open override /*1*/ fun (): jet.Double - public open override /*1*/ fun iterator(): jet.DoubleIterator +public final class DoubleProgression : kotlin.Progression { + /*primary*/ public constructor DoubleProgression(/*0*/ start: kotlin.Double, /*1*/ end: kotlin.Double, /*2*/ increment: kotlin.Double) + public open override /*1*/ val end: kotlin.Double + public open override /*1*/ fun (): kotlin.Double + public open override /*1*/ val increment: kotlin.Double + public open override /*1*/ fun (): kotlin.Double + public open override /*1*/ val start: kotlin.Double + public open override /*1*/ fun (): kotlin.Double + public open override /*1*/ fun iterator(): kotlin.DoubleIterator } -internal final class DoubleProgressionIterator : jet.DoubleIterator { - /*primary*/ public constructor DoubleProgressionIterator(/*0*/ start: jet.Double, /*1*/ end: jet.Double, /*2*/ increment: jet.Double) - internal final val end: jet.Double - internal final fun (): jet.Double - internal final val increment: jet.Double - internal final fun (): jet.Double - private final var next: jet.Double - private final fun (): jet.Double - private final fun (/*0*/ : jet.Double): jet.Unit - public open override /*1*/ fun hasNext(): jet.Boolean - public final override /*1*/ /*fake_override*/ fun next(): jet.Double - public open override /*1*/ fun nextDouble(): jet.Double +internal final class DoubleProgressionIterator : kotlin.DoubleIterator { + /*primary*/ public constructor DoubleProgressionIterator(/*0*/ start: kotlin.Double, /*1*/ end: kotlin.Double, /*2*/ increment: kotlin.Double) + internal final val end: kotlin.Double + internal final fun (): kotlin.Double + internal final val increment: kotlin.Double + internal final fun (): kotlin.Double + private final var next: kotlin.Double + private final fun (): kotlin.Double + private final fun (/*0*/ : kotlin.Double): kotlin.Unit + public open override /*1*/ fun hasNext(): kotlin.Boolean + public final override /*1*/ /*fake_override*/ fun next(): kotlin.Double + public open override /*1*/ fun nextDouble(): kotlin.Double } -public final class DoubleRange : jet.Range, jet.Progression { - /*primary*/ public constructor DoubleRange(/*0*/ start: jet.Double, /*1*/ end: jet.Double) - public open override /*2*/ val end: jet.Double - public open override /*2*/ fun (): jet.Double - public open override /*1*/ val increment: jet.Double - public open override /*1*/ fun (): jet.Double - public open override /*2*/ val start: jet.Double - public open override /*2*/ fun (): jet.Double - public open override /*1*/ fun contains(/*0*/ item: jet.Double): jet.Boolean - public open override /*1*/ fun iterator(): jet.DoubleIterator +public final class DoubleRange : kotlin.Range, kotlin.Progression { + /*primary*/ public constructor DoubleRange(/*0*/ start: kotlin.Double, /*1*/ end: kotlin.Double) + public open override /*2*/ val end: kotlin.Double + public open override /*2*/ fun (): kotlin.Double + public open override /*1*/ val increment: kotlin.Double + public open override /*1*/ fun (): kotlin.Double + public open override /*2*/ val start: kotlin.Double + public open override /*2*/ fun (): kotlin.Double + public open override /*1*/ fun contains(/*0*/ item: kotlin.Double): kotlin.Boolean + public open override /*1*/ fun iterator(): kotlin.DoubleIterator public class object { /*primary*/ private constructor () - public final val EMPTY: jet.DoubleRange - public final fun (): jet.DoubleRange + public final val EMPTY: kotlin.DoubleRange + public final fun (): kotlin.DoubleRange } } -public abstract class Enum> { - /*primary*/ public constructor Enum>(/*0*/ name: jet.String, /*1*/ ordinal: jet.Int) - public final fun name(): jet.String - public final fun ordinal(): jet.Int +public abstract class Enum> { + /*primary*/ public constructor Enum>(/*0*/ name: kotlin.String, /*1*/ ordinal: kotlin.Int) + public final fun name(): kotlin.String + public final fun ordinal(): kotlin.Int } public trait ExtensionFunction0 { @@ -537,128 +537,128 @@ public trait ExtensionFunction9 { +public final class Float : kotlin.Number, kotlin.Comparable { /*primary*/ private constructor Float() - public final fun compareTo(/*0*/ other: jet.Byte): jet.Int - public final fun compareTo(/*0*/ other: jet.Char): jet.Int - public final fun compareTo(/*0*/ other: jet.Double): jet.Int - public open override /*1*/ fun compareTo(/*0*/ other: jet.Float): jet.Int - public final fun compareTo(/*0*/ other: jet.Int): jet.Int - public final fun compareTo(/*0*/ other: jet.Long): jet.Int - public final fun compareTo(/*0*/ other: jet.Short): jet.Int - public final fun dec(): jet.Float - public final fun div(/*0*/ other: jet.Byte): jet.Float - public final fun div(/*0*/ other: jet.Char): jet.Float - public final fun div(/*0*/ other: jet.Double): jet.Double - public final fun div(/*0*/ other: jet.Float): jet.Float - public final fun div(/*0*/ other: jet.Int): jet.Float - public final fun div(/*0*/ other: jet.Long): jet.Float - public final fun div(/*0*/ other: jet.Short): jet.Float - public final fun inc(): jet.Float - public final fun minus(): jet.Float - public final fun minus(/*0*/ other: jet.Byte): jet.Float - public final fun minus(/*0*/ other: jet.Char): jet.Float - public final fun minus(/*0*/ other: jet.Double): jet.Double - public final fun minus(/*0*/ other: jet.Float): jet.Float - public final fun minus(/*0*/ other: jet.Int): jet.Float - public final fun minus(/*0*/ other: jet.Long): jet.Float - public final fun minus(/*0*/ other: jet.Short): jet.Float - public final fun mod(/*0*/ other: jet.Byte): jet.Float - public final fun mod(/*0*/ other: jet.Char): jet.Float - public final fun mod(/*0*/ other: jet.Double): jet.Double - public final fun mod(/*0*/ other: jet.Float): jet.Float - public final fun mod(/*0*/ other: jet.Int): jet.Float - public final fun mod(/*0*/ other: jet.Long): jet.Float - public final fun mod(/*0*/ other: jet.Short): jet.Float - public final fun plus(): jet.Float - public final fun plus(/*0*/ other: jet.Byte): jet.Float - public final fun plus(/*0*/ other: jet.Char): jet.Float - public final fun plus(/*0*/ other: jet.Double): jet.Double - public final fun plus(/*0*/ other: jet.Float): jet.Float - public final fun plus(/*0*/ other: jet.Int): jet.Float - public final fun plus(/*0*/ other: jet.Long): jet.Float - public final fun plus(/*0*/ other: jet.Short): jet.Float - public final fun rangeTo(/*0*/ other: jet.Byte): jet.FloatRange - public final fun rangeTo(/*0*/ other: jet.Char): jet.FloatRange - public final fun rangeTo(/*0*/ other: jet.Double): jet.DoubleRange - public final fun rangeTo(/*0*/ other: jet.Float): jet.FloatRange - public final fun rangeTo(/*0*/ other: jet.Int): jet.FloatRange - public final fun rangeTo(/*0*/ other: jet.Long): jet.FloatRange - public final fun rangeTo(/*0*/ other: jet.Short): jet.FloatRange - public final fun times(/*0*/ other: jet.Byte): jet.Float - public final fun times(/*0*/ other: jet.Char): jet.Float - public final fun times(/*0*/ other: jet.Double): jet.Double - public final fun times(/*0*/ other: jet.Float): jet.Float - public final fun times(/*0*/ other: jet.Int): jet.Float - public final fun times(/*0*/ other: jet.Long): jet.Float - public final fun times(/*0*/ other: jet.Short): jet.Float - public open override /*1*/ fun toByte(): jet.Byte - public open override /*1*/ fun toChar(): jet.Char - public open override /*1*/ fun toDouble(): jet.Double - public open override /*1*/ fun toFloat(): jet.Float - public open override /*1*/ fun toInt(): jet.Int - public open override /*1*/ fun toLong(): jet.Long - public open override /*1*/ fun toShort(): jet.Short + public final fun compareTo(/*0*/ other: kotlin.Byte): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Char): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Double): kotlin.Int + public open override /*1*/ fun compareTo(/*0*/ other: kotlin.Float): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Int): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Long): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Short): kotlin.Int + public final fun dec(): kotlin.Float + public final fun div(/*0*/ other: kotlin.Byte): kotlin.Float + public final fun div(/*0*/ other: kotlin.Char): kotlin.Float + public final fun div(/*0*/ other: kotlin.Double): kotlin.Double + public final fun div(/*0*/ other: kotlin.Float): kotlin.Float + public final fun div(/*0*/ other: kotlin.Int): kotlin.Float + public final fun div(/*0*/ other: kotlin.Long): kotlin.Float + public final fun div(/*0*/ other: kotlin.Short): kotlin.Float + public final fun inc(): kotlin.Float + public final fun minus(): kotlin.Float + public final fun minus(/*0*/ other: kotlin.Byte): kotlin.Float + public final fun minus(/*0*/ other: kotlin.Char): kotlin.Float + public final fun minus(/*0*/ other: kotlin.Double): kotlin.Double + public final fun minus(/*0*/ other: kotlin.Float): kotlin.Float + public final fun minus(/*0*/ other: kotlin.Int): kotlin.Float + public final fun minus(/*0*/ other: kotlin.Long): kotlin.Float + public final fun minus(/*0*/ other: kotlin.Short): kotlin.Float + public final fun mod(/*0*/ other: kotlin.Byte): kotlin.Float + public final fun mod(/*0*/ other: kotlin.Char): kotlin.Float + public final fun mod(/*0*/ other: kotlin.Double): kotlin.Double + public final fun mod(/*0*/ other: kotlin.Float): kotlin.Float + public final fun mod(/*0*/ other: kotlin.Int): kotlin.Float + public final fun mod(/*0*/ other: kotlin.Long): kotlin.Float + public final fun mod(/*0*/ other: kotlin.Short): kotlin.Float + public final fun plus(): kotlin.Float + public final fun plus(/*0*/ other: kotlin.Byte): kotlin.Float + public final fun plus(/*0*/ other: kotlin.Char): kotlin.Float + public final fun plus(/*0*/ other: kotlin.Double): kotlin.Double + public final fun plus(/*0*/ other: kotlin.Float): kotlin.Float + public final fun plus(/*0*/ other: kotlin.Int): kotlin.Float + public final fun plus(/*0*/ other: kotlin.Long): kotlin.Float + public final fun plus(/*0*/ other: kotlin.Short): kotlin.Float + public final fun rangeTo(/*0*/ other: kotlin.Byte): kotlin.FloatRange + public final fun rangeTo(/*0*/ other: kotlin.Char): kotlin.FloatRange + public final fun rangeTo(/*0*/ other: kotlin.Double): kotlin.DoubleRange + public final fun rangeTo(/*0*/ other: kotlin.Float): kotlin.FloatRange + public final fun rangeTo(/*0*/ other: kotlin.Int): kotlin.FloatRange + public final fun rangeTo(/*0*/ other: kotlin.Long): kotlin.FloatRange + public final fun rangeTo(/*0*/ other: kotlin.Short): kotlin.FloatRange + public final fun times(/*0*/ other: kotlin.Byte): kotlin.Float + public final fun times(/*0*/ other: kotlin.Char): kotlin.Float + public final fun times(/*0*/ other: kotlin.Double): kotlin.Double + public final fun times(/*0*/ other: kotlin.Float): kotlin.Float + public final fun times(/*0*/ other: kotlin.Int): kotlin.Float + public final fun times(/*0*/ other: kotlin.Long): kotlin.Float + public final fun times(/*0*/ other: kotlin.Short): kotlin.Float + public open override /*1*/ fun toByte(): kotlin.Byte + public open override /*1*/ fun toChar(): kotlin.Char + public open override /*1*/ fun toDouble(): kotlin.Double + public open override /*1*/ fun toFloat(): kotlin.Float + public open override /*1*/ fun toInt(): kotlin.Int + public open override /*1*/ fun toLong(): kotlin.Long + public open override /*1*/ fun toShort(): kotlin.Short } public final class FloatArray { - /*primary*/ public constructor FloatArray(/*0*/ size: jet.Int) - public final val indices: jet.IntRange - public final fun (): jet.IntRange - public final val size: jet.Int - public final fun (): jet.Int - public final fun get(/*0*/ index: jet.Int): jet.Float - public final fun iterator(): jet.FloatIterator - public final fun set(/*0*/ index: jet.Int, /*1*/ value: jet.Float): jet.Unit + /*primary*/ public constructor FloatArray(/*0*/ size: kotlin.Int) + public final val indices: kotlin.IntRange + public final fun (): kotlin.IntRange + public final val size: kotlin.Int + public final fun (): kotlin.Int + public final fun get(/*0*/ index: kotlin.Int): kotlin.Float + public final fun iterator(): kotlin.FloatIterator + public final fun set(/*0*/ index: kotlin.Int, /*1*/ value: kotlin.Float): kotlin.Unit } -public abstract class FloatIterator : jet.Iterator { +public abstract class FloatIterator : kotlin.Iterator { /*primary*/ public constructor FloatIterator() - public abstract override /*1*/ /*fake_override*/ fun hasNext(): jet.Boolean - public final override /*1*/ fun next(): jet.Float - public abstract fun nextFloat(): jet.Float + public abstract override /*1*/ /*fake_override*/ fun hasNext(): kotlin.Boolean + public final override /*1*/ fun next(): kotlin.Float + public abstract fun nextFloat(): kotlin.Float } -public final class FloatProgression : jet.Progression { - /*primary*/ public constructor FloatProgression(/*0*/ start: jet.Float, /*1*/ end: jet.Float, /*2*/ increment: jet.Float) - public open override /*1*/ val end: jet.Float - public open override /*1*/ fun (): jet.Float - public open override /*1*/ val increment: jet.Float - public open override /*1*/ fun (): jet.Float - public open override /*1*/ val start: jet.Float - public open override /*1*/ fun (): jet.Float - public open override /*1*/ fun iterator(): jet.FloatIterator +public final class FloatProgression : kotlin.Progression { + /*primary*/ public constructor FloatProgression(/*0*/ start: kotlin.Float, /*1*/ end: kotlin.Float, /*2*/ increment: kotlin.Float) + public open override /*1*/ val end: kotlin.Float + public open override /*1*/ fun (): kotlin.Float + public open override /*1*/ val increment: kotlin.Float + public open override /*1*/ fun (): kotlin.Float + public open override /*1*/ val start: kotlin.Float + public open override /*1*/ fun (): kotlin.Float + public open override /*1*/ fun iterator(): kotlin.FloatIterator } -internal final class FloatProgressionIterator : jet.FloatIterator { - /*primary*/ public constructor FloatProgressionIterator(/*0*/ start: jet.Float, /*1*/ end: jet.Float, /*2*/ increment: jet.Float) - internal final val end: jet.Float - internal final fun (): jet.Float - internal final val increment: jet.Float - internal final fun (): jet.Float - private final var next: jet.Float - private final fun (): jet.Float - private final fun (/*0*/ : jet.Float): jet.Unit - public open override /*1*/ fun hasNext(): jet.Boolean - public final override /*1*/ /*fake_override*/ fun next(): jet.Float - public open override /*1*/ fun nextFloat(): jet.Float +internal final class FloatProgressionIterator : kotlin.FloatIterator { + /*primary*/ public constructor FloatProgressionIterator(/*0*/ start: kotlin.Float, /*1*/ end: kotlin.Float, /*2*/ increment: kotlin.Float) + internal final val end: kotlin.Float + internal final fun (): kotlin.Float + internal final val increment: kotlin.Float + internal final fun (): kotlin.Float + private final var next: kotlin.Float + private final fun (): kotlin.Float + private final fun (/*0*/ : kotlin.Float): kotlin.Unit + public open override /*1*/ fun hasNext(): kotlin.Boolean + public final override /*1*/ /*fake_override*/ fun next(): kotlin.Float + public open override /*1*/ fun nextFloat(): kotlin.Float } -public final class FloatRange : jet.Range, jet.Progression { - /*primary*/ public constructor FloatRange(/*0*/ start: jet.Float, /*1*/ end: jet.Float) - public open override /*2*/ val end: jet.Float - public open override /*2*/ fun (): jet.Float - public open override /*1*/ val increment: jet.Float - public open override /*1*/ fun (): jet.Float - public open override /*2*/ val start: jet.Float - public open override /*2*/ fun (): jet.Float - public open override /*1*/ fun contains(/*0*/ item: jet.Float): jet.Boolean - public open override /*1*/ fun iterator(): jet.FloatIterator +public final class FloatRange : kotlin.Range, kotlin.Progression { + /*primary*/ public constructor FloatRange(/*0*/ start: kotlin.Float, /*1*/ end: kotlin.Float) + public open override /*2*/ val end: kotlin.Float + public open override /*2*/ fun (): kotlin.Float + public open override /*1*/ val increment: kotlin.Float + public open override /*1*/ fun (): kotlin.Float + public open override /*2*/ val start: kotlin.Float + public open override /*2*/ fun (): kotlin.Float + public open override /*1*/ fun contains(/*0*/ item: kotlin.Float): kotlin.Boolean + public open override /*1*/ fun iterator(): kotlin.FloatIterator public class object { /*primary*/ private constructor () - public final val EMPTY: jet.FloatRange - public final fun (): jet.FloatRange + public final val EMPTY: kotlin.FloatRange + public final fun (): kotlin.FloatRange } } @@ -754,629 +754,629 @@ public trait Function9 { +public final enum class InlineStrategy : kotlin.Enum { /*primary*/ private constructor InlineStrategy() - public final override /*1*/ /*fake_override*/ fun name(): jet.String - public final override /*1*/ /*fake_override*/ fun ordinal(): jet.Int + public final override /*1*/ /*fake_override*/ fun name(): kotlin.String + public final override /*1*/ /*fake_override*/ fun ordinal(): kotlin.Int public class object { /*primary*/ private constructor () - public final /*synthesized*/ fun valueOf(/*0*/ value: jet.String): jet.InlineStrategy - public final /*synthesized*/ fun values(): jet.Array + public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): kotlin.InlineStrategy + public final /*synthesized*/ fun values(): kotlin.Array } - public enum entry AS_FUNCTION : jet.InlineStrategy { + public enum entry AS_FUNCTION : kotlin.InlineStrategy { /*primary*/ private constructor AS_FUNCTION() - public final override /*1*/ /*fake_override*/ fun name(): jet.String - public final override /*1*/ /*fake_override*/ fun ordinal(): jet.Int + public final override /*1*/ /*fake_override*/ fun name(): kotlin.String + public final override /*1*/ /*fake_override*/ fun ordinal(): kotlin.Int - public class object : jet.InlineStrategy.AS_FUNCTION { + public class object : kotlin.InlineStrategy.AS_FUNCTION { /*primary*/ private constructor () - public final override /*1*/ /*fake_override*/ fun name(): jet.String - public final override /*1*/ /*fake_override*/ fun ordinal(): jet.Int + public final override /*1*/ /*fake_override*/ fun name(): kotlin.String + public final override /*1*/ /*fake_override*/ fun ordinal(): kotlin.Int } } - public enum entry IN_PLACE : jet.InlineStrategy { + public enum entry IN_PLACE : kotlin.InlineStrategy { /*primary*/ private constructor IN_PLACE() - public final override /*1*/ /*fake_override*/ fun name(): jet.String - public final override /*1*/ /*fake_override*/ fun ordinal(): jet.Int + public final override /*1*/ /*fake_override*/ fun name(): kotlin.String + public final override /*1*/ /*fake_override*/ fun ordinal(): kotlin.Int - public class object : jet.InlineStrategy.IN_PLACE { + public class object : kotlin.InlineStrategy.IN_PLACE { /*primary*/ private constructor () - public final override /*1*/ /*fake_override*/ fun name(): jet.String - public final override /*1*/ /*fake_override*/ fun ordinal(): jet.Int + public final override /*1*/ /*fake_override*/ fun name(): kotlin.String + public final override /*1*/ /*fake_override*/ fun ordinal(): kotlin.Int } } } -public final class Int : jet.Number, jet.Comparable { +public final class Int : kotlin.Number, kotlin.Comparable { /*primary*/ private constructor Int() - public final fun and(/*0*/ other: jet.Int): jet.Int - public final fun compareTo(/*0*/ other: jet.Byte): jet.Int - public final fun compareTo(/*0*/ other: jet.Char): jet.Int - public final fun compareTo(/*0*/ other: jet.Double): jet.Int - public final fun compareTo(/*0*/ other: jet.Float): jet.Int - public open override /*1*/ fun compareTo(/*0*/ other: jet.Int): jet.Int - public final fun compareTo(/*0*/ other: jet.Long): jet.Int - public final fun compareTo(/*0*/ other: jet.Short): jet.Int - public final fun dec(): jet.Int - public final fun div(/*0*/ other: jet.Byte): jet.Int - public final fun div(/*0*/ other: jet.Char): jet.Int - public final fun div(/*0*/ other: jet.Double): jet.Double - public final fun div(/*0*/ other: jet.Float): jet.Float - public final fun div(/*0*/ other: jet.Int): jet.Int - public final fun div(/*0*/ other: jet.Long): jet.Long - public final fun div(/*0*/ other: jet.Short): jet.Int - public final fun inc(): jet.Int - public final fun inv(): jet.Int - public final fun minus(): jet.Int - public final fun minus(/*0*/ other: jet.Byte): jet.Int - public final fun minus(/*0*/ other: jet.Char): jet.Int - public final fun minus(/*0*/ other: jet.Double): jet.Double - public final fun minus(/*0*/ other: jet.Float): jet.Float - public final fun minus(/*0*/ other: jet.Int): jet.Int - public final fun minus(/*0*/ other: jet.Long): jet.Long - public final fun minus(/*0*/ other: jet.Short): jet.Int - public final fun mod(/*0*/ other: jet.Byte): jet.Int - public final fun mod(/*0*/ other: jet.Char): jet.Int - public final fun mod(/*0*/ other: jet.Double): jet.Double - public final fun mod(/*0*/ other: jet.Float): jet.Float - public final fun mod(/*0*/ other: jet.Int): jet.Int - public final fun mod(/*0*/ other: jet.Long): jet.Long - public final fun mod(/*0*/ other: jet.Short): jet.Int - public final fun or(/*0*/ other: jet.Int): jet.Int - public final fun plus(): jet.Int - public final fun plus(/*0*/ other: jet.Byte): jet.Int - public final fun plus(/*0*/ other: jet.Char): jet.Int - public final fun plus(/*0*/ other: jet.Double): jet.Double - public final fun plus(/*0*/ other: jet.Float): jet.Float - public final fun plus(/*0*/ other: jet.Int): jet.Int - public final fun plus(/*0*/ other: jet.Long): jet.Long - public final fun plus(/*0*/ other: jet.Short): jet.Int - public final fun rangeTo(/*0*/ other: jet.Byte): jet.IntRange - public final fun rangeTo(/*0*/ other: jet.Char): jet.IntRange - public final fun rangeTo(/*0*/ other: jet.Double): jet.DoubleRange - public final fun rangeTo(/*0*/ other: jet.Float): jet.FloatRange - public final fun rangeTo(/*0*/ other: jet.Int): jet.IntRange - public final fun rangeTo(/*0*/ other: jet.Long): jet.LongRange - public final fun rangeTo(/*0*/ other: jet.Short): jet.IntRange - public final fun shl(/*0*/ bits: jet.Int): jet.Int - public final fun shr(/*0*/ bits: jet.Int): jet.Int - public final fun times(/*0*/ other: jet.Byte): jet.Int - public final fun times(/*0*/ other: jet.Char): jet.Int - public final fun times(/*0*/ other: jet.Double): jet.Double - public final fun times(/*0*/ other: jet.Float): jet.Float - public final fun times(/*0*/ other: jet.Int): jet.Int - public final fun times(/*0*/ other: jet.Long): jet.Long - public final fun times(/*0*/ other: jet.Short): jet.Int - public open override /*1*/ fun toByte(): jet.Byte - public open override /*1*/ fun toChar(): jet.Char - public open override /*1*/ fun toDouble(): jet.Double - public open override /*1*/ fun toFloat(): jet.Float - public open override /*1*/ fun toInt(): jet.Int - public open override /*1*/ fun toLong(): jet.Long - public open override /*1*/ fun toShort(): jet.Short - public final fun ushr(/*0*/ bits: jet.Int): jet.Int - public final fun xor(/*0*/ other: jet.Int): jet.Int + public final fun and(/*0*/ other: kotlin.Int): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Byte): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Char): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Double): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Float): kotlin.Int + public open override /*1*/ fun compareTo(/*0*/ other: kotlin.Int): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Long): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Short): kotlin.Int + public final fun dec(): kotlin.Int + public final fun div(/*0*/ other: kotlin.Byte): kotlin.Int + public final fun div(/*0*/ other: kotlin.Char): kotlin.Int + public final fun div(/*0*/ other: kotlin.Double): kotlin.Double + public final fun div(/*0*/ other: kotlin.Float): kotlin.Float + public final fun div(/*0*/ other: kotlin.Int): kotlin.Int + public final fun div(/*0*/ other: kotlin.Long): kotlin.Long + public final fun div(/*0*/ other: kotlin.Short): kotlin.Int + public final fun inc(): kotlin.Int + public final fun inv(): kotlin.Int + public final fun minus(): kotlin.Int + public final fun minus(/*0*/ other: kotlin.Byte): kotlin.Int + public final fun minus(/*0*/ other: kotlin.Char): kotlin.Int + public final fun minus(/*0*/ other: kotlin.Double): kotlin.Double + public final fun minus(/*0*/ other: kotlin.Float): kotlin.Float + public final fun minus(/*0*/ other: kotlin.Int): kotlin.Int + public final fun minus(/*0*/ other: kotlin.Long): kotlin.Long + public final fun minus(/*0*/ other: kotlin.Short): kotlin.Int + public final fun mod(/*0*/ other: kotlin.Byte): kotlin.Int + public final fun mod(/*0*/ other: kotlin.Char): kotlin.Int + public final fun mod(/*0*/ other: kotlin.Double): kotlin.Double + public final fun mod(/*0*/ other: kotlin.Float): kotlin.Float + public final fun mod(/*0*/ other: kotlin.Int): kotlin.Int + public final fun mod(/*0*/ other: kotlin.Long): kotlin.Long + public final fun mod(/*0*/ other: kotlin.Short): kotlin.Int + public final fun or(/*0*/ other: kotlin.Int): kotlin.Int + public final fun plus(): kotlin.Int + public final fun plus(/*0*/ other: kotlin.Byte): kotlin.Int + public final fun plus(/*0*/ other: kotlin.Char): kotlin.Int + public final fun plus(/*0*/ other: kotlin.Double): kotlin.Double + public final fun plus(/*0*/ other: kotlin.Float): kotlin.Float + public final fun plus(/*0*/ other: kotlin.Int): kotlin.Int + public final fun plus(/*0*/ other: kotlin.Long): kotlin.Long + public final fun plus(/*0*/ other: kotlin.Short): kotlin.Int + public final fun rangeTo(/*0*/ other: kotlin.Byte): kotlin.IntRange + public final fun rangeTo(/*0*/ other: kotlin.Char): kotlin.IntRange + public final fun rangeTo(/*0*/ other: kotlin.Double): kotlin.DoubleRange + public final fun rangeTo(/*0*/ other: kotlin.Float): kotlin.FloatRange + public final fun rangeTo(/*0*/ other: kotlin.Int): kotlin.IntRange + public final fun rangeTo(/*0*/ other: kotlin.Long): kotlin.LongRange + public final fun rangeTo(/*0*/ other: kotlin.Short): kotlin.IntRange + public final fun shl(/*0*/ bits: kotlin.Int): kotlin.Int + public final fun shr(/*0*/ bits: kotlin.Int): kotlin.Int + public final fun times(/*0*/ other: kotlin.Byte): kotlin.Int + public final fun times(/*0*/ other: kotlin.Char): kotlin.Int + public final fun times(/*0*/ other: kotlin.Double): kotlin.Double + public final fun times(/*0*/ other: kotlin.Float): kotlin.Float + public final fun times(/*0*/ other: kotlin.Int): kotlin.Int + public final fun times(/*0*/ other: kotlin.Long): kotlin.Long + public final fun times(/*0*/ other: kotlin.Short): kotlin.Int + public open override /*1*/ fun toByte(): kotlin.Byte + public open override /*1*/ fun toChar(): kotlin.Char + public open override /*1*/ fun toDouble(): kotlin.Double + public open override /*1*/ fun toFloat(): kotlin.Float + public open override /*1*/ fun toInt(): kotlin.Int + public open override /*1*/ fun toLong(): kotlin.Long + public open override /*1*/ fun toShort(): kotlin.Short + public final fun ushr(/*0*/ bits: kotlin.Int): kotlin.Int + public final fun xor(/*0*/ other: kotlin.Int): kotlin.Int } public final class IntArray { - /*primary*/ public constructor IntArray(/*0*/ size: jet.Int) - public final val indices: jet.IntRange - public final fun (): jet.IntRange - public final val size: jet.Int - public final fun (): jet.Int - public final fun get(/*0*/ index: jet.Int): jet.Int - public final fun iterator(): jet.IntIterator - public final fun set(/*0*/ index: jet.Int, /*1*/ value: jet.Int): jet.Unit + /*primary*/ public constructor IntArray(/*0*/ size: kotlin.Int) + public final val indices: kotlin.IntRange + public final fun (): kotlin.IntRange + public final val size: kotlin.Int + public final fun (): kotlin.Int + public final fun get(/*0*/ index: kotlin.Int): kotlin.Int + public final fun iterator(): kotlin.IntIterator + public final fun set(/*0*/ index: kotlin.Int, /*1*/ value: kotlin.Int): kotlin.Unit } -public abstract class IntIterator : jet.Iterator { +public abstract class IntIterator : kotlin.Iterator { /*primary*/ public constructor IntIterator() - public abstract override /*1*/ /*fake_override*/ fun hasNext(): jet.Boolean - public final override /*1*/ fun next(): jet.Int - public abstract fun nextInt(): jet.Int + public abstract override /*1*/ /*fake_override*/ fun hasNext(): kotlin.Boolean + public final override /*1*/ fun next(): kotlin.Int + public abstract fun nextInt(): kotlin.Int } -public final class IntProgression : jet.Progression { - /*primary*/ public constructor IntProgression(/*0*/ start: jet.Int, /*1*/ end: jet.Int, /*2*/ increment: jet.Int) - public open override /*1*/ val end: jet.Int - public open override /*1*/ fun (): jet.Int - public open override /*1*/ val increment: jet.Int - public open override /*1*/ fun (): jet.Int - public open override /*1*/ val start: jet.Int - public open override /*1*/ fun (): jet.Int - public open override /*1*/ fun iterator(): jet.IntIterator +public final class IntProgression : kotlin.Progression { + /*primary*/ public constructor IntProgression(/*0*/ start: kotlin.Int, /*1*/ end: kotlin.Int, /*2*/ increment: kotlin.Int) + public open override /*1*/ val end: kotlin.Int + public open override /*1*/ fun (): kotlin.Int + public open override /*1*/ val increment: kotlin.Int + public open override /*1*/ fun (): kotlin.Int + public open override /*1*/ val start: kotlin.Int + public open override /*1*/ fun (): kotlin.Int + public open override /*1*/ fun iterator(): kotlin.IntIterator } -internal final class IntProgressionIterator : jet.IntIterator { - /*primary*/ public constructor IntProgressionIterator(/*0*/ start: jet.Int, /*1*/ end: jet.Int, /*2*/ increment: jet.Int) - private final val finalElement: jet.Int - private final fun (): jet.Int - private final var hasNext: jet.Boolean - private final fun (): jet.Boolean - private final fun (/*0*/ : jet.Boolean): jet.Unit - internal final val increment: jet.Int - internal final fun (): jet.Int - private final var next: jet.Int - private final fun (): jet.Int - private final fun (/*0*/ : jet.Int): jet.Unit - public open override /*1*/ fun hasNext(): jet.Boolean - public final override /*1*/ /*fake_override*/ fun next(): jet.Int - public open override /*1*/ fun nextInt(): jet.Int +internal final class IntProgressionIterator : kotlin.IntIterator { + /*primary*/ public constructor IntProgressionIterator(/*0*/ start: kotlin.Int, /*1*/ end: kotlin.Int, /*2*/ increment: kotlin.Int) + private final val finalElement: kotlin.Int + private final fun (): kotlin.Int + private final var hasNext: kotlin.Boolean + private final fun (): kotlin.Boolean + private final fun (/*0*/ : kotlin.Boolean): kotlin.Unit + internal final val increment: kotlin.Int + internal final fun (): kotlin.Int + private final var next: kotlin.Int + private final fun (): kotlin.Int + private final fun (/*0*/ : kotlin.Int): kotlin.Unit + public open override /*1*/ fun hasNext(): kotlin.Boolean + public final override /*1*/ /*fake_override*/ fun next(): kotlin.Int + public open override /*1*/ fun nextInt(): kotlin.Int } -public final class IntRange : jet.Range, jet.Progression { - /*primary*/ public constructor IntRange(/*0*/ start: jet.Int, /*1*/ end: jet.Int) - public open override /*2*/ val end: jet.Int - public open override /*2*/ fun (): jet.Int - public open override /*1*/ val increment: jet.Int - public open override /*1*/ fun (): jet.Int - public open override /*2*/ val start: jet.Int - public open override /*2*/ fun (): jet.Int - public open override /*1*/ fun contains(/*0*/ item: jet.Int): jet.Boolean - public open override /*1*/ fun iterator(): jet.IntIterator +public final class IntRange : kotlin.Range, kotlin.Progression { + /*primary*/ public constructor IntRange(/*0*/ start: kotlin.Int, /*1*/ end: kotlin.Int) + public open override /*2*/ val end: kotlin.Int + public open override /*2*/ fun (): kotlin.Int + public open override /*1*/ val increment: kotlin.Int + public open override /*1*/ fun (): kotlin.Int + public open override /*2*/ val start: kotlin.Int + public open override /*2*/ fun (): kotlin.Int + public open override /*1*/ fun contains(/*0*/ item: kotlin.Int): kotlin.Boolean + public open override /*1*/ fun iterator(): kotlin.IntIterator public class object { /*primary*/ private constructor () - public final val EMPTY: jet.IntRange - public final fun (): jet.IntRange + public final val EMPTY: kotlin.IntRange + public final fun (): kotlin.IntRange } } public trait Iterable { - public abstract fun iterator(): jet.Iterator + public abstract fun iterator(): kotlin.Iterator } public trait Iterator { - public abstract fun hasNext(): jet.Boolean + public abstract fun hasNext(): kotlin.Boolean public abstract fun next(): T } -public trait KExtensionFunction0 : jet.ExtensionFunction0 { +public trait KExtensionFunction0 : kotlin.ExtensionFunction0 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(): R } -public trait KExtensionFunction1 : jet.ExtensionFunction1 { +public trait KExtensionFunction1 : kotlin.ExtensionFunction1 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1): R } -public trait KExtensionFunction10 : jet.ExtensionFunction10 { +public trait KExtensionFunction10 : kotlin.ExtensionFunction10 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10): R } -public trait KExtensionFunction11 : jet.ExtensionFunction11 { +public trait KExtensionFunction11 : kotlin.ExtensionFunction11 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11): R } -public trait KExtensionFunction12 : jet.ExtensionFunction12 { +public trait KExtensionFunction12 : kotlin.ExtensionFunction12 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12): R } -public trait KExtensionFunction13 : jet.ExtensionFunction13 { +public trait KExtensionFunction13 : kotlin.ExtensionFunction13 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13): R } -public trait KExtensionFunction14 : jet.ExtensionFunction14 { +public trait KExtensionFunction14 : kotlin.ExtensionFunction14 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14): R } -public trait KExtensionFunction15 : jet.ExtensionFunction15 { +public trait KExtensionFunction15 : kotlin.ExtensionFunction15 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15): R } -public trait KExtensionFunction16 : jet.ExtensionFunction16 { +public trait KExtensionFunction16 : kotlin.ExtensionFunction16 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16): R } -public trait KExtensionFunction17 : jet.ExtensionFunction17 { +public trait KExtensionFunction17 : kotlin.ExtensionFunction17 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17): R } -public trait KExtensionFunction18 : jet.ExtensionFunction18 { +public trait KExtensionFunction18 : kotlin.ExtensionFunction18 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18): R } -public trait KExtensionFunction19 : jet.ExtensionFunction19 { +public trait KExtensionFunction19 : kotlin.ExtensionFunction19 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19): R } -public trait KExtensionFunction2 : jet.ExtensionFunction2 { +public trait KExtensionFunction2 : kotlin.ExtensionFunction2 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2): R } -public trait KExtensionFunction20 : jet.ExtensionFunction20 { +public trait KExtensionFunction20 : kotlin.ExtensionFunction20 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19, /*19*/ p20: P20): R } -public trait KExtensionFunction21 : jet.ExtensionFunction21 { +public trait KExtensionFunction21 : kotlin.ExtensionFunction21 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19, /*19*/ p20: P20, /*20*/ p21: P21): R } -public trait KExtensionFunction22 : jet.ExtensionFunction22 { +public trait KExtensionFunction22 : kotlin.ExtensionFunction22 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19, /*19*/ p20: P20, /*20*/ p21: P21, /*21*/ p22: P22): R } -public trait KExtensionFunction3 : jet.ExtensionFunction3 { +public trait KExtensionFunction3 : kotlin.ExtensionFunction3 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3): R } -public trait KExtensionFunction4 : jet.ExtensionFunction4 { +public trait KExtensionFunction4 : kotlin.ExtensionFunction4 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4): R } -public trait KExtensionFunction5 : jet.ExtensionFunction5 { +public trait KExtensionFunction5 : kotlin.ExtensionFunction5 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5): R } -public trait KExtensionFunction6 : jet.ExtensionFunction6 { +public trait KExtensionFunction6 : kotlin.ExtensionFunction6 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6): R } -public trait KExtensionFunction7 : jet.ExtensionFunction7 { +public trait KExtensionFunction7 : kotlin.ExtensionFunction7 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7): R } -public trait KExtensionFunction8 : jet.ExtensionFunction8 { +public trait KExtensionFunction8 : kotlin.ExtensionFunction8 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8): R } -public trait KExtensionFunction9 : jet.ExtensionFunction9 { +public trait KExtensionFunction9 : kotlin.ExtensionFunction9 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9): R } -public trait KFunction0 : jet.Function0 { +public trait KFunction0 : kotlin.Function0 { public abstract override /*1*/ /*fake_override*/ fun invoke(): R } -public trait KFunction1 : jet.Function1 { +public trait KFunction1 : kotlin.Function1 { public abstract override /*1*/ /*fake_override*/ fun invoke(/*0*/ p1: P1): R } -public trait KFunction10 : jet.Function10 { +public trait KFunction10 : kotlin.Function10 { public abstract override /*1*/ /*fake_override*/ fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10): R } -public trait KFunction11 : jet.Function11 { +public trait KFunction11 : kotlin.Function11 { public abstract override /*1*/ /*fake_override*/ fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11): R } -public trait KFunction12 : jet.Function12 { +public trait KFunction12 : kotlin.Function12 { public abstract override /*1*/ /*fake_override*/ fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12): R } -public trait KFunction13 : jet.Function13 { +public trait KFunction13 : kotlin.Function13 { public abstract override /*1*/ /*fake_override*/ fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13): R } -public trait KFunction14 : jet.Function14 { +public trait KFunction14 : kotlin.Function14 { public abstract override /*1*/ /*fake_override*/ fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14): R } -public trait KFunction15 : jet.Function15 { +public trait KFunction15 : kotlin.Function15 { public abstract override /*1*/ /*fake_override*/ fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15): R } -public trait KFunction16 : jet.Function16 { +public trait KFunction16 : kotlin.Function16 { public abstract override /*1*/ /*fake_override*/ fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16): R } -public trait KFunction17 : jet.Function17 { +public trait KFunction17 : kotlin.Function17 { public abstract override /*1*/ /*fake_override*/ fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17): R } -public trait KFunction18 : jet.Function18 { +public trait KFunction18 : kotlin.Function18 { public abstract override /*1*/ /*fake_override*/ fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18): R } -public trait KFunction19 : jet.Function19 { +public trait KFunction19 : kotlin.Function19 { public abstract override /*1*/ /*fake_override*/ fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19): R } -public trait KFunction2 : jet.Function2 { +public trait KFunction2 : kotlin.Function2 { public abstract override /*1*/ /*fake_override*/ fun invoke(/*0*/ p1: P1, /*1*/ p2: P2): R } -public trait KFunction20 : jet.Function20 { +public trait KFunction20 : kotlin.Function20 { public abstract override /*1*/ /*fake_override*/ fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19, /*19*/ p20: P20): R } -public trait KFunction21 : jet.Function21 { +public trait KFunction21 : kotlin.Function21 { public abstract override /*1*/ /*fake_override*/ fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19, /*19*/ p20: P20, /*20*/ p21: P21): R } -public trait KFunction22 : jet.Function22 { +public trait KFunction22 : kotlin.Function22 { public abstract override /*1*/ /*fake_override*/ fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19, /*19*/ p20: P20, /*20*/ p21: P21, /*21*/ p22: P22): R } -public trait KFunction3 : jet.Function3 { +public trait KFunction3 : kotlin.Function3 { public abstract override /*1*/ /*fake_override*/ fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3): R } -public trait KFunction4 : jet.Function4 { +public trait KFunction4 : kotlin.Function4 { public abstract override /*1*/ /*fake_override*/ fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4): R } -public trait KFunction5 : jet.Function5 { +public trait KFunction5 : kotlin.Function5 { public abstract override /*1*/ /*fake_override*/ fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5): R } -public trait KFunction6 : jet.Function6 { +public trait KFunction6 : kotlin.Function6 { public abstract override /*1*/ /*fake_override*/ fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6): R } -public trait KFunction7 : jet.Function7 { +public trait KFunction7 : kotlin.Function7 { public abstract override /*1*/ /*fake_override*/ fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7): R } -public trait KFunction8 : jet.Function8 { +public trait KFunction8 : kotlin.Function8 { public abstract override /*1*/ /*fake_override*/ fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8): R } -public trait KFunction9 : jet.Function9 { +public trait KFunction9 : kotlin.Function9 { public abstract override /*1*/ /*fake_override*/ fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9): R } -public trait KMemberFunction0 : jet.ExtensionFunction0 { +public trait KMemberFunction0 : kotlin.ExtensionFunction0 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(): R } -public trait KMemberFunction1 : jet.ExtensionFunction1 { +public trait KMemberFunction1 : kotlin.ExtensionFunction1 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1): R } -public trait KMemberFunction10 : jet.ExtensionFunction10 { +public trait KMemberFunction10 : kotlin.ExtensionFunction10 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10): R } -public trait KMemberFunction11 : jet.ExtensionFunction11 { +public trait KMemberFunction11 : kotlin.ExtensionFunction11 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11): R } -public trait KMemberFunction12 : jet.ExtensionFunction12 { +public trait KMemberFunction12 : kotlin.ExtensionFunction12 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12): R } -public trait KMemberFunction13 : jet.ExtensionFunction13 { +public trait KMemberFunction13 : kotlin.ExtensionFunction13 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13): R } -public trait KMemberFunction14 : jet.ExtensionFunction14 { +public trait KMemberFunction14 : kotlin.ExtensionFunction14 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14): R } -public trait KMemberFunction15 : jet.ExtensionFunction15 { +public trait KMemberFunction15 : kotlin.ExtensionFunction15 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15): R } -public trait KMemberFunction16 : jet.ExtensionFunction16 { +public trait KMemberFunction16 : kotlin.ExtensionFunction16 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16): R } -public trait KMemberFunction17 : jet.ExtensionFunction17 { +public trait KMemberFunction17 : kotlin.ExtensionFunction17 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17): R } -public trait KMemberFunction18 : jet.ExtensionFunction18 { +public trait KMemberFunction18 : kotlin.ExtensionFunction18 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18): R } -public trait KMemberFunction19 : jet.ExtensionFunction19 { +public trait KMemberFunction19 : kotlin.ExtensionFunction19 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19): R } -public trait KMemberFunction2 : jet.ExtensionFunction2 { +public trait KMemberFunction2 : kotlin.ExtensionFunction2 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2): R } -public trait KMemberFunction20 : jet.ExtensionFunction20 { +public trait KMemberFunction20 : kotlin.ExtensionFunction20 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19, /*19*/ p20: P20): R } -public trait KMemberFunction21 : jet.ExtensionFunction21 { +public trait KMemberFunction21 : kotlin.ExtensionFunction21 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19, /*19*/ p20: P20, /*20*/ p21: P21): R } -public trait KMemberFunction22 : jet.ExtensionFunction22 { +public trait KMemberFunction22 : kotlin.ExtensionFunction22 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19, /*19*/ p20: P20, /*20*/ p21: P21, /*21*/ p22: P22): R } -public trait KMemberFunction3 : jet.ExtensionFunction3 { +public trait KMemberFunction3 : kotlin.ExtensionFunction3 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3): R } -public trait KMemberFunction4 : jet.ExtensionFunction4 { +public trait KMemberFunction4 : kotlin.ExtensionFunction4 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4): R } -public trait KMemberFunction5 : jet.ExtensionFunction5 { +public trait KMemberFunction5 : kotlin.ExtensionFunction5 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5): R } -public trait KMemberFunction6 : jet.ExtensionFunction6 { +public trait KMemberFunction6 : kotlin.ExtensionFunction6 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6): R } -public trait KMemberFunction7 : jet.ExtensionFunction7 { +public trait KMemberFunction7 : kotlin.ExtensionFunction7 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7): R } -public trait KMemberFunction8 : jet.ExtensionFunction8 { +public trait KMemberFunction8 : kotlin.ExtensionFunction8 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8): R } -public trait KMemberFunction9 : jet.ExtensionFunction9 { +public trait KMemberFunction9 : kotlin.ExtensionFunction9 { public abstract override /*1*/ /*fake_override*/ fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9): R } -public trait List : jet.Collection { - public abstract override /*1*/ fun contains(/*0*/ o: jet.Any?): jet.Boolean - public abstract override /*1*/ fun containsAll(/*0*/ c: jet.Collection): jet.Boolean - public abstract fun get(/*0*/ index: jet.Int): E - public abstract fun indexOf(/*0*/ o: jet.Any?): jet.Int - public abstract override /*1*/ fun isEmpty(): jet.Boolean - public abstract override /*1*/ fun iterator(): jet.Iterator - public abstract fun lastIndexOf(/*0*/ o: jet.Any?): jet.Int - public abstract fun listIterator(): jet.ListIterator - public abstract fun listIterator(/*0*/ index: jet.Int): jet.ListIterator - public abstract override /*1*/ fun size(): jet.Int - public abstract fun subList(/*0*/ fromIndex: jet.Int, /*1*/ toIndex: jet.Int): jet.List +public trait List : kotlin.Collection { + public abstract override /*1*/ fun contains(/*0*/ o: kotlin.Any?): kotlin.Boolean + public abstract override /*1*/ fun containsAll(/*0*/ c: kotlin.Collection): kotlin.Boolean + public abstract fun get(/*0*/ index: kotlin.Int): E + public abstract fun indexOf(/*0*/ o: kotlin.Any?): kotlin.Int + public abstract override /*1*/ fun isEmpty(): kotlin.Boolean + public abstract override /*1*/ fun iterator(): kotlin.Iterator + public abstract fun lastIndexOf(/*0*/ o: kotlin.Any?): kotlin.Int + public abstract fun listIterator(): kotlin.ListIterator + public abstract fun listIterator(/*0*/ index: kotlin.Int): kotlin.ListIterator + public abstract override /*1*/ fun size(): kotlin.Int + public abstract fun subList(/*0*/ fromIndex: kotlin.Int, /*1*/ toIndex: kotlin.Int): kotlin.List } -public trait ListIterator : jet.Iterator { - public abstract override /*1*/ fun hasNext(): jet.Boolean - public abstract fun hasPrevious(): jet.Boolean +public trait ListIterator : kotlin.Iterator { + public abstract override /*1*/ fun hasNext(): kotlin.Boolean + public abstract fun hasPrevious(): kotlin.Boolean public abstract override /*1*/ fun next(): T - public abstract fun nextIndex(): jet.Int + public abstract fun nextIndex(): kotlin.Int public abstract fun previous(): T - public abstract fun previousIndex(): jet.Int + public abstract fun previousIndex(): kotlin.Int } -public final class Long : jet.Number, jet.Comparable { +public final class Long : kotlin.Number, kotlin.Comparable { /*primary*/ private constructor Long() - public final fun and(/*0*/ other: jet.Long): jet.Long - public final fun compareTo(/*0*/ other: jet.Byte): jet.Int - public final fun compareTo(/*0*/ other: jet.Char): jet.Int - public final fun compareTo(/*0*/ other: jet.Double): jet.Int - public final fun compareTo(/*0*/ other: jet.Float): jet.Int - public final fun compareTo(/*0*/ other: jet.Int): jet.Int - public open override /*1*/ fun compareTo(/*0*/ other: jet.Long): jet.Int - public final fun compareTo(/*0*/ other: jet.Short): jet.Int - public final fun dec(): jet.Long - public final fun div(/*0*/ other: jet.Byte): jet.Long - public final fun div(/*0*/ other: jet.Char): jet.Long - public final fun div(/*0*/ other: jet.Double): jet.Double - public final fun div(/*0*/ other: jet.Float): jet.Float - public final fun div(/*0*/ other: jet.Int): jet.Long - public final fun div(/*0*/ other: jet.Long): jet.Long - public final fun div(/*0*/ other: jet.Short): jet.Long - public final fun inc(): jet.Long - public final fun inv(): jet.Long - public final fun minus(): jet.Long - public final fun minus(/*0*/ other: jet.Byte): jet.Long - public final fun minus(/*0*/ other: jet.Char): jet.Long - public final fun minus(/*0*/ other: jet.Double): jet.Double - public final fun minus(/*0*/ other: jet.Float): jet.Float - public final fun minus(/*0*/ other: jet.Int): jet.Long - public final fun minus(/*0*/ other: jet.Long): jet.Long - public final fun minus(/*0*/ other: jet.Short): jet.Long - public final fun mod(/*0*/ other: jet.Byte): jet.Long - public final fun mod(/*0*/ other: jet.Char): jet.Long - public final fun mod(/*0*/ other: jet.Double): jet.Double - public final fun mod(/*0*/ other: jet.Float): jet.Float - public final fun mod(/*0*/ other: jet.Int): jet.Long - public final fun mod(/*0*/ other: jet.Long): jet.Long - public final fun mod(/*0*/ other: jet.Short): jet.Long - public final fun or(/*0*/ other: jet.Long): jet.Long - public final fun plus(): jet.Long - public final fun plus(/*0*/ other: jet.Byte): jet.Long - public final fun plus(/*0*/ other: jet.Char): jet.Long - public final fun plus(/*0*/ other: jet.Double): jet.Double - public final fun plus(/*0*/ other: jet.Float): jet.Float - public final fun plus(/*0*/ other: jet.Int): jet.Long - public final fun plus(/*0*/ other: jet.Long): jet.Long - public final fun plus(/*0*/ other: jet.Short): jet.Long - public final fun rangeTo(/*0*/ other: jet.Byte): jet.LongRange - public final fun rangeTo(/*0*/ other: jet.Char): jet.LongRange - public final fun rangeTo(/*0*/ other: jet.Double): jet.DoubleRange - public final fun rangeTo(/*0*/ other: jet.Float): jet.FloatRange - public final fun rangeTo(/*0*/ other: jet.Int): jet.LongRange - public final fun rangeTo(/*0*/ other: jet.Long): jet.LongRange - public final fun rangeTo(/*0*/ other: jet.Short): jet.LongRange - public final fun shl(/*0*/ bits: jet.Int): jet.Long - public final fun shr(/*0*/ bits: jet.Int): jet.Long - public final fun times(/*0*/ other: jet.Byte): jet.Long - public final fun times(/*0*/ other: jet.Char): jet.Long - public final fun times(/*0*/ other: jet.Double): jet.Double - public final fun times(/*0*/ other: jet.Float): jet.Float - public final fun times(/*0*/ other: jet.Int): jet.Long - public final fun times(/*0*/ other: jet.Long): jet.Long - public final fun times(/*0*/ other: jet.Short): jet.Long - public open override /*1*/ fun toByte(): jet.Byte - public open override /*1*/ fun toChar(): jet.Char - public open override /*1*/ fun toDouble(): jet.Double - public open override /*1*/ fun toFloat(): jet.Float - public open override /*1*/ fun toInt(): jet.Int - public open override /*1*/ fun toLong(): jet.Long - public open override /*1*/ fun toShort(): jet.Short - public final fun ushr(/*0*/ bits: jet.Int): jet.Long - public final fun xor(/*0*/ other: jet.Long): jet.Long + public final fun and(/*0*/ other: kotlin.Long): kotlin.Long + public final fun compareTo(/*0*/ other: kotlin.Byte): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Char): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Double): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Float): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Int): kotlin.Int + public open override /*1*/ fun compareTo(/*0*/ other: kotlin.Long): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Short): kotlin.Int + public final fun dec(): kotlin.Long + public final fun div(/*0*/ other: kotlin.Byte): kotlin.Long + public final fun div(/*0*/ other: kotlin.Char): kotlin.Long + public final fun div(/*0*/ other: kotlin.Double): kotlin.Double + public final fun div(/*0*/ other: kotlin.Float): kotlin.Float + public final fun div(/*0*/ other: kotlin.Int): kotlin.Long + public final fun div(/*0*/ other: kotlin.Long): kotlin.Long + public final fun div(/*0*/ other: kotlin.Short): kotlin.Long + public final fun inc(): kotlin.Long + public final fun inv(): kotlin.Long + public final fun minus(): kotlin.Long + public final fun minus(/*0*/ other: kotlin.Byte): kotlin.Long + public final fun minus(/*0*/ other: kotlin.Char): kotlin.Long + public final fun minus(/*0*/ other: kotlin.Double): kotlin.Double + public final fun minus(/*0*/ other: kotlin.Float): kotlin.Float + public final fun minus(/*0*/ other: kotlin.Int): kotlin.Long + public final fun minus(/*0*/ other: kotlin.Long): kotlin.Long + public final fun minus(/*0*/ other: kotlin.Short): kotlin.Long + public final fun mod(/*0*/ other: kotlin.Byte): kotlin.Long + public final fun mod(/*0*/ other: kotlin.Char): kotlin.Long + public final fun mod(/*0*/ other: kotlin.Double): kotlin.Double + public final fun mod(/*0*/ other: kotlin.Float): kotlin.Float + public final fun mod(/*0*/ other: kotlin.Int): kotlin.Long + public final fun mod(/*0*/ other: kotlin.Long): kotlin.Long + public final fun mod(/*0*/ other: kotlin.Short): kotlin.Long + public final fun or(/*0*/ other: kotlin.Long): kotlin.Long + public final fun plus(): kotlin.Long + public final fun plus(/*0*/ other: kotlin.Byte): kotlin.Long + public final fun plus(/*0*/ other: kotlin.Char): kotlin.Long + public final fun plus(/*0*/ other: kotlin.Double): kotlin.Double + public final fun plus(/*0*/ other: kotlin.Float): kotlin.Float + public final fun plus(/*0*/ other: kotlin.Int): kotlin.Long + public final fun plus(/*0*/ other: kotlin.Long): kotlin.Long + public final fun plus(/*0*/ other: kotlin.Short): kotlin.Long + public final fun rangeTo(/*0*/ other: kotlin.Byte): kotlin.LongRange + public final fun rangeTo(/*0*/ other: kotlin.Char): kotlin.LongRange + public final fun rangeTo(/*0*/ other: kotlin.Double): kotlin.DoubleRange + public final fun rangeTo(/*0*/ other: kotlin.Float): kotlin.FloatRange + public final fun rangeTo(/*0*/ other: kotlin.Int): kotlin.LongRange + public final fun rangeTo(/*0*/ other: kotlin.Long): kotlin.LongRange + public final fun rangeTo(/*0*/ other: kotlin.Short): kotlin.LongRange + public final fun shl(/*0*/ bits: kotlin.Int): kotlin.Long + public final fun shr(/*0*/ bits: kotlin.Int): kotlin.Long + public final fun times(/*0*/ other: kotlin.Byte): kotlin.Long + public final fun times(/*0*/ other: kotlin.Char): kotlin.Long + public final fun times(/*0*/ other: kotlin.Double): kotlin.Double + public final fun times(/*0*/ other: kotlin.Float): kotlin.Float + public final fun times(/*0*/ other: kotlin.Int): kotlin.Long + public final fun times(/*0*/ other: kotlin.Long): kotlin.Long + public final fun times(/*0*/ other: kotlin.Short): kotlin.Long + public open override /*1*/ fun toByte(): kotlin.Byte + public open override /*1*/ fun toChar(): kotlin.Char + public open override /*1*/ fun toDouble(): kotlin.Double + public open override /*1*/ fun toFloat(): kotlin.Float + public open override /*1*/ fun toInt(): kotlin.Int + public open override /*1*/ fun toLong(): kotlin.Long + public open override /*1*/ fun toShort(): kotlin.Short + public final fun ushr(/*0*/ bits: kotlin.Int): kotlin.Long + public final fun xor(/*0*/ other: kotlin.Long): kotlin.Long } public final class LongArray { - /*primary*/ public constructor LongArray(/*0*/ size: jet.Int) - public final val indices: jet.IntRange - public final fun (): jet.IntRange - public final val size: jet.Int - public final fun (): jet.Int - public final fun get(/*0*/ index: jet.Int): jet.Long - public final fun iterator(): jet.LongIterator - public final fun set(/*0*/ index: jet.Int, /*1*/ value: jet.Long): jet.Unit + /*primary*/ public constructor LongArray(/*0*/ size: kotlin.Int) + public final val indices: kotlin.IntRange + public final fun (): kotlin.IntRange + public final val size: kotlin.Int + public final fun (): kotlin.Int + public final fun get(/*0*/ index: kotlin.Int): kotlin.Long + public final fun iterator(): kotlin.LongIterator + public final fun set(/*0*/ index: kotlin.Int, /*1*/ value: kotlin.Long): kotlin.Unit } -public abstract class LongIterator : jet.Iterator { +public abstract class LongIterator : kotlin.Iterator { /*primary*/ public constructor LongIterator() - public abstract override /*1*/ /*fake_override*/ fun hasNext(): jet.Boolean - public final override /*1*/ fun next(): jet.Long - public abstract fun nextLong(): jet.Long + public abstract override /*1*/ /*fake_override*/ fun hasNext(): kotlin.Boolean + public final override /*1*/ fun next(): kotlin.Long + public abstract fun nextLong(): kotlin.Long } -public final class LongProgression : jet.Progression { - /*primary*/ public constructor LongProgression(/*0*/ start: jet.Long, /*1*/ end: jet.Long, /*2*/ increment: jet.Long) - public open override /*1*/ val end: jet.Long - public open override /*1*/ fun (): jet.Long - public open override /*1*/ val increment: jet.Long - public open override /*1*/ fun (): jet.Long - public open override /*1*/ val start: jet.Long - public open override /*1*/ fun (): jet.Long - public open override /*1*/ fun iterator(): jet.LongIterator +public final class LongProgression : kotlin.Progression { + /*primary*/ public constructor LongProgression(/*0*/ start: kotlin.Long, /*1*/ end: kotlin.Long, /*2*/ increment: kotlin.Long) + public open override /*1*/ val end: kotlin.Long + public open override /*1*/ fun (): kotlin.Long + public open override /*1*/ val increment: kotlin.Long + public open override /*1*/ fun (): kotlin.Long + public open override /*1*/ val start: kotlin.Long + public open override /*1*/ fun (): kotlin.Long + public open override /*1*/ fun iterator(): kotlin.LongIterator } -internal final class LongProgressionIterator : jet.LongIterator { - /*primary*/ public constructor LongProgressionIterator(/*0*/ start: jet.Long, /*1*/ end: jet.Long, /*2*/ increment: jet.Long) - private final val finalElement: jet.Long - private final fun (): jet.Long - private final var hasNext: jet.Boolean - private final fun (): jet.Boolean - private final fun (/*0*/ : jet.Boolean): jet.Unit - internal final val increment: jet.Long - internal final fun (): jet.Long - private final var next: jet.Long - private final fun (): jet.Long - private final fun (/*0*/ : jet.Long): jet.Unit - public open override /*1*/ fun hasNext(): jet.Boolean - public final override /*1*/ /*fake_override*/ fun next(): jet.Long - public open override /*1*/ fun nextLong(): jet.Long +internal final class LongProgressionIterator : kotlin.LongIterator { + /*primary*/ public constructor LongProgressionIterator(/*0*/ start: kotlin.Long, /*1*/ end: kotlin.Long, /*2*/ increment: kotlin.Long) + private final val finalElement: kotlin.Long + private final fun (): kotlin.Long + private final var hasNext: kotlin.Boolean + private final fun (): kotlin.Boolean + private final fun (/*0*/ : kotlin.Boolean): kotlin.Unit + internal final val increment: kotlin.Long + internal final fun (): kotlin.Long + private final var next: kotlin.Long + private final fun (): kotlin.Long + private final fun (/*0*/ : kotlin.Long): kotlin.Unit + public open override /*1*/ fun hasNext(): kotlin.Boolean + public final override /*1*/ /*fake_override*/ fun next(): kotlin.Long + public open override /*1*/ fun nextLong(): kotlin.Long } -public final class LongRange : jet.Range, jet.Progression { - /*primary*/ public constructor LongRange(/*0*/ start: jet.Long, /*1*/ end: jet.Long) - public open override /*2*/ val end: jet.Long - public open override /*2*/ fun (): jet.Long - public open override /*1*/ val increment: jet.Long - public open override /*1*/ fun (): jet.Long - public open override /*2*/ val start: jet.Long - public open override /*2*/ fun (): jet.Long - public open override /*1*/ fun contains(/*0*/ item: jet.Long): jet.Boolean - public open override /*1*/ fun iterator(): jet.LongIterator +public final class LongRange : kotlin.Range, kotlin.Progression { + /*primary*/ public constructor LongRange(/*0*/ start: kotlin.Long, /*1*/ end: kotlin.Long) + public open override /*2*/ val end: kotlin.Long + public open override /*2*/ fun (): kotlin.Long + public open override /*1*/ val increment: kotlin.Long + public open override /*1*/ fun (): kotlin.Long + public open override /*2*/ val start: kotlin.Long + public open override /*2*/ fun (): kotlin.Long + public open override /*1*/ fun contains(/*0*/ item: kotlin.Long): kotlin.Boolean + public open override /*1*/ fun iterator(): kotlin.LongIterator public class object { /*primary*/ private constructor () - public final val EMPTY: jet.LongRange - public final fun (): jet.LongRange + public final val EMPTY: kotlin.LongRange + public final fun (): kotlin.LongRange } } public trait Map { - public abstract fun containsKey(/*0*/ key: jet.Any?): jet.Boolean - public abstract fun containsValue(/*0*/ value: jet.Any?): jet.Boolean - public abstract fun entrySet(): jet.Set> - public abstract fun get(/*0*/ key: jet.Any?): V? - public abstract fun isEmpty(): jet.Boolean - public abstract fun keySet(): jet.Set - public abstract fun size(): jet.Int - public abstract fun values(): jet.Collection + public abstract fun containsKey(/*0*/ key: kotlin.Any?): kotlin.Boolean + public abstract fun containsValue(/*0*/ value: kotlin.Any?): kotlin.Boolean + public abstract fun entrySet(): kotlin.Set> + public abstract fun get(/*0*/ key: kotlin.Any?): V? + public abstract fun isEmpty(): kotlin.Boolean + public abstract fun keySet(): kotlin.Set + public abstract fun size(): kotlin.Int + public abstract fun values(): kotlin.Collection public trait Entry { public abstract fun getKey(): K @@ -1384,99 +1384,99 @@ public trait Map { } } -public trait MutableCollection : jet.Collection, jet.MutableIterable { - public abstract fun add(/*0*/ e: E): jet.Boolean - public abstract fun addAll(/*0*/ c: jet.Collection): jet.Boolean - public abstract fun clear(): jet.Unit - public abstract override /*1*/ /*fake_override*/ fun contains(/*0*/ o: jet.Any?): jet.Boolean - public abstract override /*1*/ /*fake_override*/ fun containsAll(/*0*/ c: jet.Collection): jet.Boolean - public abstract override /*1*/ /*fake_override*/ fun isEmpty(): jet.Boolean - public abstract override /*2*/ fun iterator(): jet.MutableIterator - public abstract fun remove(/*0*/ o: jet.Any?): jet.Boolean - public abstract fun removeAll(/*0*/ c: jet.Collection): jet.Boolean - public abstract fun retainAll(/*0*/ c: jet.Collection): jet.Boolean - public abstract override /*1*/ /*fake_override*/ fun size(): jet.Int +public trait MutableCollection : kotlin.Collection, kotlin.MutableIterable { + public abstract fun add(/*0*/ e: E): kotlin.Boolean + public abstract fun addAll(/*0*/ c: kotlin.Collection): kotlin.Boolean + public abstract fun clear(): kotlin.Unit + public abstract override /*1*/ /*fake_override*/ fun contains(/*0*/ o: kotlin.Any?): kotlin.Boolean + public abstract override /*1*/ /*fake_override*/ fun containsAll(/*0*/ c: kotlin.Collection): kotlin.Boolean + public abstract override /*1*/ /*fake_override*/ fun isEmpty(): kotlin.Boolean + public abstract override /*2*/ fun iterator(): kotlin.MutableIterator + public abstract fun remove(/*0*/ o: kotlin.Any?): kotlin.Boolean + public abstract fun removeAll(/*0*/ c: kotlin.Collection): kotlin.Boolean + public abstract fun retainAll(/*0*/ c: kotlin.Collection): kotlin.Boolean + public abstract override /*1*/ /*fake_override*/ fun size(): kotlin.Int } -public trait MutableIterable : jet.Iterable { - public abstract override /*1*/ fun iterator(): jet.MutableIterator +public trait MutableIterable : kotlin.Iterable { + public abstract override /*1*/ fun iterator(): kotlin.MutableIterator } -public trait MutableIterator : jet.Iterator { - public abstract override /*1*/ /*fake_override*/ fun hasNext(): jet.Boolean +public trait MutableIterator : kotlin.Iterator { + public abstract override /*1*/ /*fake_override*/ fun hasNext(): kotlin.Boolean public abstract override /*1*/ /*fake_override*/ fun next(): T - public abstract fun remove(): jet.Unit + public abstract fun remove(): kotlin.Unit } -public trait MutableList : jet.List, jet.MutableCollection { - public abstract override /*1*/ fun add(/*0*/ e: E): jet.Boolean - public abstract fun add(/*0*/ index: jet.Int, /*1*/ element: E): jet.Unit - public abstract override /*1*/ fun addAll(/*0*/ c: jet.Collection): jet.Boolean - public abstract fun addAll(/*0*/ index: jet.Int, /*1*/ c: jet.Collection): jet.Boolean - public abstract override /*1*/ fun clear(): jet.Unit - public abstract override /*2*/ /*fake_override*/ fun contains(/*0*/ o: jet.Any?): jet.Boolean - public abstract override /*2*/ /*fake_override*/ fun containsAll(/*0*/ c: jet.Collection): jet.Boolean - public abstract override /*1*/ /*fake_override*/ fun get(/*0*/ index: jet.Int): E - public abstract override /*1*/ /*fake_override*/ fun indexOf(/*0*/ o: jet.Any?): jet.Int - public abstract override /*2*/ /*fake_override*/ fun isEmpty(): jet.Boolean - public abstract override /*2*/ /*fake_override*/ fun iterator(): jet.MutableIterator - public abstract override /*1*/ /*fake_override*/ fun lastIndexOf(/*0*/ o: jet.Any?): jet.Int - public abstract override /*1*/ fun listIterator(): jet.MutableListIterator - public abstract override /*1*/ fun listIterator(/*0*/ index: jet.Int): jet.MutableListIterator - public abstract override /*1*/ fun remove(/*0*/ o: jet.Any?): jet.Boolean - public abstract fun remove(/*0*/ index: jet.Int): E - public abstract override /*1*/ fun removeAll(/*0*/ c: jet.Collection): jet.Boolean - public abstract override /*1*/ fun retainAll(/*0*/ c: jet.Collection): jet.Boolean - public abstract fun set(/*0*/ index: jet.Int, /*1*/ element: E): E - public abstract override /*2*/ /*fake_override*/ fun size(): jet.Int - public abstract override /*1*/ fun subList(/*0*/ fromIndex: jet.Int, /*1*/ toIndex: jet.Int): jet.MutableList +public trait MutableList : kotlin.List, kotlin.MutableCollection { + public abstract override /*1*/ fun add(/*0*/ e: E): kotlin.Boolean + public abstract fun add(/*0*/ index: kotlin.Int, /*1*/ element: E): kotlin.Unit + public abstract override /*1*/ fun addAll(/*0*/ c: kotlin.Collection): kotlin.Boolean + public abstract fun addAll(/*0*/ index: kotlin.Int, /*1*/ c: kotlin.Collection): kotlin.Boolean + public abstract override /*1*/ fun clear(): kotlin.Unit + public abstract override /*2*/ /*fake_override*/ fun contains(/*0*/ o: kotlin.Any?): kotlin.Boolean + public abstract override /*2*/ /*fake_override*/ fun containsAll(/*0*/ c: kotlin.Collection): kotlin.Boolean + public abstract override /*1*/ /*fake_override*/ fun get(/*0*/ index: kotlin.Int): E + public abstract override /*1*/ /*fake_override*/ fun indexOf(/*0*/ o: kotlin.Any?): kotlin.Int + public abstract override /*2*/ /*fake_override*/ fun isEmpty(): kotlin.Boolean + public abstract override /*2*/ /*fake_override*/ fun iterator(): kotlin.MutableIterator + public abstract override /*1*/ /*fake_override*/ fun lastIndexOf(/*0*/ o: kotlin.Any?): kotlin.Int + public abstract override /*1*/ fun listIterator(): kotlin.MutableListIterator + public abstract override /*1*/ fun listIterator(/*0*/ index: kotlin.Int): kotlin.MutableListIterator + public abstract override /*1*/ fun remove(/*0*/ o: kotlin.Any?): kotlin.Boolean + public abstract fun remove(/*0*/ index: kotlin.Int): E + public abstract override /*1*/ fun removeAll(/*0*/ c: kotlin.Collection): kotlin.Boolean + public abstract override /*1*/ fun retainAll(/*0*/ c: kotlin.Collection): kotlin.Boolean + public abstract fun set(/*0*/ index: kotlin.Int, /*1*/ element: E): E + public abstract override /*2*/ /*fake_override*/ fun size(): kotlin.Int + public abstract override /*1*/ fun subList(/*0*/ fromIndex: kotlin.Int, /*1*/ toIndex: kotlin.Int): kotlin.MutableList } -public trait MutableListIterator : jet.ListIterator, jet.MutableIterator { - public abstract fun add(/*0*/ e: T): jet.Unit - public abstract override /*2*/ fun hasNext(): jet.Boolean - public abstract override /*1*/ /*fake_override*/ fun hasPrevious(): jet.Boolean +public trait MutableListIterator : kotlin.ListIterator, kotlin.MutableIterator { + public abstract fun add(/*0*/ e: T): kotlin.Unit + public abstract override /*2*/ fun hasNext(): kotlin.Boolean + public abstract override /*1*/ /*fake_override*/ fun hasPrevious(): kotlin.Boolean public abstract override /*2*/ fun next(): T - public abstract override /*1*/ /*fake_override*/ fun nextIndex(): jet.Int + public abstract override /*1*/ /*fake_override*/ fun nextIndex(): kotlin.Int public abstract override /*1*/ /*fake_override*/ fun previous(): T - public abstract override /*1*/ /*fake_override*/ fun previousIndex(): jet.Int - public abstract override /*1*/ fun remove(): jet.Unit - public abstract fun set(/*0*/ e: T): jet.Unit + public abstract override /*1*/ /*fake_override*/ fun previousIndex(): kotlin.Int + public abstract override /*1*/ fun remove(): kotlin.Unit + public abstract fun set(/*0*/ e: T): kotlin.Unit } -public trait MutableMap : jet.Map { - public abstract fun clear(): jet.Unit - public abstract override /*1*/ /*fake_override*/ fun containsKey(/*0*/ key: jet.Any?): jet.Boolean - public abstract override /*1*/ /*fake_override*/ fun containsValue(/*0*/ value: jet.Any?): jet.Boolean - public abstract override /*1*/ fun entrySet(): jet.MutableSet> - public abstract override /*1*/ /*fake_override*/ fun get(/*0*/ key: jet.Any?): V? - public abstract override /*1*/ /*fake_override*/ fun isEmpty(): jet.Boolean - public abstract override /*1*/ fun keySet(): jet.MutableSet +public trait MutableMap : kotlin.Map { + public abstract fun clear(): kotlin.Unit + public abstract override /*1*/ /*fake_override*/ fun containsKey(/*0*/ key: kotlin.Any?): kotlin.Boolean + public abstract override /*1*/ /*fake_override*/ fun containsValue(/*0*/ value: kotlin.Any?): kotlin.Boolean + public abstract override /*1*/ fun entrySet(): kotlin.MutableSet> + public abstract override /*1*/ /*fake_override*/ fun get(/*0*/ key: kotlin.Any?): V? + public abstract override /*1*/ /*fake_override*/ fun isEmpty(): kotlin.Boolean + public abstract override /*1*/ fun keySet(): kotlin.MutableSet public abstract fun put(/*0*/ key: K, /*1*/ value: V): V? - public abstract fun putAll(/*0*/ m: jet.Map): jet.Unit - public abstract fun remove(/*0*/ key: jet.Any?): V? - public abstract override /*1*/ /*fake_override*/ fun size(): jet.Int - public abstract override /*1*/ fun values(): jet.MutableCollection + public abstract fun putAll(/*0*/ m: kotlin.Map): kotlin.Unit + public abstract fun remove(/*0*/ key: kotlin.Any?): V? + public abstract override /*1*/ /*fake_override*/ fun size(): kotlin.Int + public abstract override /*1*/ fun values(): kotlin.MutableCollection - public trait MutableEntry : jet.Map.Entry { + public trait MutableEntry : kotlin.Map.Entry { public abstract override /*1*/ /*fake_override*/ fun getKey(): K public abstract override /*1*/ /*fake_override*/ fun getValue(): V public abstract fun setValue(/*0*/ value: V): V } } -public trait MutableSet : jet.Set, jet.MutableCollection { - public abstract override /*1*/ fun add(/*0*/ e: E): jet.Boolean - public abstract override /*1*/ fun addAll(/*0*/ c: jet.Collection): jet.Boolean - public abstract override /*1*/ fun clear(): jet.Unit - public abstract override /*2*/ /*fake_override*/ fun contains(/*0*/ o: jet.Any?): jet.Boolean - public abstract override /*2*/ /*fake_override*/ fun containsAll(/*0*/ c: jet.Collection): jet.Boolean - public abstract override /*2*/ /*fake_override*/ fun isEmpty(): jet.Boolean - public abstract override /*2*/ fun iterator(): jet.MutableIterator - public abstract override /*1*/ fun remove(/*0*/ o: jet.Any?): jet.Boolean - public abstract override /*1*/ fun removeAll(/*0*/ c: jet.Collection): jet.Boolean - public abstract override /*1*/ fun retainAll(/*0*/ c: jet.Collection): jet.Boolean - public abstract override /*2*/ /*fake_override*/ fun size(): jet.Int +public trait MutableSet : kotlin.Set, kotlin.MutableCollection { + public abstract override /*1*/ fun add(/*0*/ e: E): kotlin.Boolean + public abstract override /*1*/ fun addAll(/*0*/ c: kotlin.Collection): kotlin.Boolean + public abstract override /*1*/ fun clear(): kotlin.Unit + public abstract override /*2*/ /*fake_override*/ fun contains(/*0*/ o: kotlin.Any?): kotlin.Boolean + public abstract override /*2*/ /*fake_override*/ fun containsAll(/*0*/ c: kotlin.Collection): kotlin.Boolean + public abstract override /*2*/ /*fake_override*/ fun isEmpty(): kotlin.Boolean + public abstract override /*2*/ fun iterator(): kotlin.MutableIterator + public abstract override /*1*/ fun remove(/*0*/ o: kotlin.Any?): kotlin.Boolean + public abstract override /*1*/ fun removeAll(/*0*/ c: kotlin.Collection): kotlin.Boolean + public abstract override /*1*/ fun retainAll(/*0*/ c: kotlin.Collection): kotlin.Boolean + public abstract override /*2*/ /*fake_override*/ fun size(): kotlin.Int } public final class Nothing { @@ -1485,194 +1485,194 @@ public final class Nothing { public abstract class Number { /*primary*/ public constructor Number() - public abstract fun toByte(): jet.Byte - public abstract fun toChar(): jet.Char - public abstract fun toDouble(): jet.Double - public abstract fun toFloat(): jet.Float - public abstract fun toInt(): jet.Int - public abstract fun toLong(): jet.Long - public abstract fun toShort(): jet.Short + public abstract fun toByte(): kotlin.Byte + public abstract fun toChar(): kotlin.Char + public abstract fun toDouble(): kotlin.Double + public abstract fun toFloat(): kotlin.Float + public abstract fun toInt(): kotlin.Int + public abstract fun toLong(): kotlin.Long + public abstract fun toShort(): kotlin.Short } -public trait Progression : jet.Iterable { +public trait Progression : kotlin.Iterable { public abstract val end: N public abstract fun (): N - public abstract val increment: jet.Number - public abstract fun (): jet.Number + public abstract val increment: kotlin.Number + public abstract fun (): kotlin.Number public abstract val start: N public abstract fun (): N - public abstract override /*1*/ /*fake_override*/ fun iterator(): jet.Iterator + public abstract override /*1*/ /*fake_override*/ fun iterator(): kotlin.Iterator } public trait PropertyMetadata { - public abstract val name: jet.String - public abstract fun (): jet.String + public abstract val name: kotlin.String + public abstract fun (): kotlin.String } -public final class PropertyMetadataImpl : jet.PropertyMetadata { - /*primary*/ public constructor PropertyMetadataImpl(/*0*/ name: jet.String) - public open override /*1*/ val name: jet.String - public open override /*1*/ fun (): jet.String +public final class PropertyMetadataImpl : kotlin.PropertyMetadata { + /*primary*/ public constructor PropertyMetadataImpl(/*0*/ name: kotlin.String) + public open override /*1*/ val name: kotlin.String + public open override /*1*/ fun (): kotlin.String } -public trait Range> { +public trait Range> { public abstract val end: T public abstract fun (): T public abstract val start: T public abstract fun (): T - public abstract fun contains(/*0*/ item: T): jet.Boolean + public abstract fun contains(/*0*/ item: T): kotlin.Boolean } -public trait Set : jet.Collection { - public abstract override /*1*/ fun contains(/*0*/ o: jet.Any?): jet.Boolean - public abstract override /*1*/ fun containsAll(/*0*/ c: jet.Collection): jet.Boolean - public abstract override /*1*/ fun isEmpty(): jet.Boolean - public abstract override /*1*/ fun iterator(): jet.Iterator - public abstract override /*1*/ fun size(): jet.Int +public trait Set : kotlin.Collection { + public abstract override /*1*/ fun contains(/*0*/ o: kotlin.Any?): kotlin.Boolean + public abstract override /*1*/ fun containsAll(/*0*/ c: kotlin.Collection): kotlin.Boolean + public abstract override /*1*/ fun isEmpty(): kotlin.Boolean + public abstract override /*1*/ fun iterator(): kotlin.Iterator + public abstract override /*1*/ fun size(): kotlin.Int } -public final class Short : jet.Number, jet.Comparable { +public final class Short : kotlin.Number, kotlin.Comparable { /*primary*/ private constructor Short() - public final fun compareTo(/*0*/ other: jet.Byte): jet.Int - public final fun compareTo(/*0*/ other: jet.Char): jet.Int - public final fun compareTo(/*0*/ other: jet.Double): jet.Int - public final fun compareTo(/*0*/ other: jet.Float): jet.Int - public final fun compareTo(/*0*/ other: jet.Int): jet.Int - public final fun compareTo(/*0*/ other: jet.Long): jet.Int - public open override /*1*/ fun compareTo(/*0*/ other: jet.Short): jet.Int - public final fun dec(): jet.Short - public final fun div(/*0*/ other: jet.Byte): jet.Int - public final fun div(/*0*/ other: jet.Char): jet.Int - public final fun div(/*0*/ other: jet.Double): jet.Double - public final fun div(/*0*/ other: jet.Float): jet.Float - public final fun div(/*0*/ other: jet.Int): jet.Int - public final fun div(/*0*/ other: jet.Long): jet.Long - public final fun div(/*0*/ other: jet.Short): jet.Int - public final fun inc(): jet.Short - public final fun minus(): jet.Int - public final fun minus(/*0*/ other: jet.Byte): jet.Int - public final fun minus(/*0*/ other: jet.Char): jet.Int - public final fun minus(/*0*/ other: jet.Double): jet.Double - public final fun minus(/*0*/ other: jet.Float): jet.Float - public final fun minus(/*0*/ other: jet.Int): jet.Int - public final fun minus(/*0*/ other: jet.Long): jet.Long - public final fun minus(/*0*/ other: jet.Short): jet.Int - public final fun mod(/*0*/ other: jet.Byte): jet.Int - public final fun mod(/*0*/ other: jet.Char): jet.Int - public final fun mod(/*0*/ other: jet.Double): jet.Double - public final fun mod(/*0*/ other: jet.Float): jet.Float - public final fun mod(/*0*/ other: jet.Int): jet.Int - public final fun mod(/*0*/ other: jet.Long): jet.Long - public final fun mod(/*0*/ other: jet.Short): jet.Int - public final fun plus(): jet.Int - public final fun plus(/*0*/ other: jet.Byte): jet.Int - public final fun plus(/*0*/ other: jet.Char): jet.Int - public final fun plus(/*0*/ other: jet.Double): jet.Double - public final fun plus(/*0*/ other: jet.Float): jet.Float - public final fun plus(/*0*/ other: jet.Int): jet.Int - public final fun plus(/*0*/ other: jet.Long): jet.Long - public final fun plus(/*0*/ other: jet.Short): jet.Int - public final fun rangeTo(/*0*/ other: jet.Byte): jet.ShortRange - public final fun rangeTo(/*0*/ other: jet.Char): jet.ShortRange - public final fun rangeTo(/*0*/ other: jet.Double): jet.DoubleRange - public final fun rangeTo(/*0*/ other: jet.Float): jet.FloatRange - public final fun rangeTo(/*0*/ other: jet.Int): jet.IntRange - public final fun rangeTo(/*0*/ other: jet.Long): jet.LongRange - public final fun rangeTo(/*0*/ other: jet.Short): jet.ShortRange - public final fun times(/*0*/ other: jet.Byte): jet.Int - public final fun times(/*0*/ other: jet.Char): jet.Int - public final fun times(/*0*/ other: jet.Double): jet.Double - public final fun times(/*0*/ other: jet.Float): jet.Float - public final fun times(/*0*/ other: jet.Int): jet.Int - public final fun times(/*0*/ other: jet.Long): jet.Long - public final fun times(/*0*/ other: jet.Short): jet.Int - public open override /*1*/ fun toByte(): jet.Byte - public open override /*1*/ fun toChar(): jet.Char - public open override /*1*/ fun toDouble(): jet.Double - public open override /*1*/ fun toFloat(): jet.Float - public open override /*1*/ fun toInt(): jet.Int - public open override /*1*/ fun toLong(): jet.Long - public open override /*1*/ fun toShort(): jet.Short + public final fun compareTo(/*0*/ other: kotlin.Byte): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Char): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Double): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Float): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Int): kotlin.Int + public final fun compareTo(/*0*/ other: kotlin.Long): kotlin.Int + public open override /*1*/ fun compareTo(/*0*/ other: kotlin.Short): kotlin.Int + public final fun dec(): kotlin.Short + public final fun div(/*0*/ other: kotlin.Byte): kotlin.Int + public final fun div(/*0*/ other: kotlin.Char): kotlin.Int + public final fun div(/*0*/ other: kotlin.Double): kotlin.Double + public final fun div(/*0*/ other: kotlin.Float): kotlin.Float + public final fun div(/*0*/ other: kotlin.Int): kotlin.Int + public final fun div(/*0*/ other: kotlin.Long): kotlin.Long + public final fun div(/*0*/ other: kotlin.Short): kotlin.Int + public final fun inc(): kotlin.Short + public final fun minus(): kotlin.Int + public final fun minus(/*0*/ other: kotlin.Byte): kotlin.Int + public final fun minus(/*0*/ other: kotlin.Char): kotlin.Int + public final fun minus(/*0*/ other: kotlin.Double): kotlin.Double + public final fun minus(/*0*/ other: kotlin.Float): kotlin.Float + public final fun minus(/*0*/ other: kotlin.Int): kotlin.Int + public final fun minus(/*0*/ other: kotlin.Long): kotlin.Long + public final fun minus(/*0*/ other: kotlin.Short): kotlin.Int + public final fun mod(/*0*/ other: kotlin.Byte): kotlin.Int + public final fun mod(/*0*/ other: kotlin.Char): kotlin.Int + public final fun mod(/*0*/ other: kotlin.Double): kotlin.Double + public final fun mod(/*0*/ other: kotlin.Float): kotlin.Float + public final fun mod(/*0*/ other: kotlin.Int): kotlin.Int + public final fun mod(/*0*/ other: kotlin.Long): kotlin.Long + public final fun mod(/*0*/ other: kotlin.Short): kotlin.Int + public final fun plus(): kotlin.Int + public final fun plus(/*0*/ other: kotlin.Byte): kotlin.Int + public final fun plus(/*0*/ other: kotlin.Char): kotlin.Int + public final fun plus(/*0*/ other: kotlin.Double): kotlin.Double + public final fun plus(/*0*/ other: kotlin.Float): kotlin.Float + public final fun plus(/*0*/ other: kotlin.Int): kotlin.Int + public final fun plus(/*0*/ other: kotlin.Long): kotlin.Long + public final fun plus(/*0*/ other: kotlin.Short): kotlin.Int + public final fun rangeTo(/*0*/ other: kotlin.Byte): kotlin.ShortRange + public final fun rangeTo(/*0*/ other: kotlin.Char): kotlin.ShortRange + public final fun rangeTo(/*0*/ other: kotlin.Double): kotlin.DoubleRange + public final fun rangeTo(/*0*/ other: kotlin.Float): kotlin.FloatRange + public final fun rangeTo(/*0*/ other: kotlin.Int): kotlin.IntRange + public final fun rangeTo(/*0*/ other: kotlin.Long): kotlin.LongRange + public final fun rangeTo(/*0*/ other: kotlin.Short): kotlin.ShortRange + public final fun times(/*0*/ other: kotlin.Byte): kotlin.Int + public final fun times(/*0*/ other: kotlin.Char): kotlin.Int + public final fun times(/*0*/ other: kotlin.Double): kotlin.Double + public final fun times(/*0*/ other: kotlin.Float): kotlin.Float + public final fun times(/*0*/ other: kotlin.Int): kotlin.Int + public final fun times(/*0*/ other: kotlin.Long): kotlin.Long + public final fun times(/*0*/ other: kotlin.Short): kotlin.Int + public open override /*1*/ fun toByte(): kotlin.Byte + public open override /*1*/ fun toChar(): kotlin.Char + public open override /*1*/ fun toDouble(): kotlin.Double + public open override /*1*/ fun toFloat(): kotlin.Float + public open override /*1*/ fun toInt(): kotlin.Int + public open override /*1*/ fun toLong(): kotlin.Long + public open override /*1*/ fun toShort(): kotlin.Short } public final class ShortArray { - /*primary*/ public constructor ShortArray(/*0*/ size: jet.Int) - public final val indices: jet.IntRange - public final fun (): jet.IntRange - public final val size: jet.Int - public final fun (): jet.Int - public final fun get(/*0*/ index: jet.Int): jet.Short - public final fun iterator(): jet.ShortIterator - public final fun set(/*0*/ index: jet.Int, /*1*/ value: jet.Short): jet.Unit + /*primary*/ public constructor ShortArray(/*0*/ size: kotlin.Int) + public final val indices: kotlin.IntRange + public final fun (): kotlin.IntRange + public final val size: kotlin.Int + public final fun (): kotlin.Int + public final fun get(/*0*/ index: kotlin.Int): kotlin.Short + public final fun iterator(): kotlin.ShortIterator + public final fun set(/*0*/ index: kotlin.Int, /*1*/ value: kotlin.Short): kotlin.Unit } -public abstract class ShortIterator : jet.Iterator { +public abstract class ShortIterator : kotlin.Iterator { /*primary*/ public constructor ShortIterator() - public abstract override /*1*/ /*fake_override*/ fun hasNext(): jet.Boolean - public final override /*1*/ fun next(): jet.Short - public abstract fun nextShort(): jet.Short + public abstract override /*1*/ /*fake_override*/ fun hasNext(): kotlin.Boolean + public final override /*1*/ fun next(): kotlin.Short + public abstract fun nextShort(): kotlin.Short } -public final class ShortProgression : jet.Progression { - /*primary*/ public constructor ShortProgression(/*0*/ start: jet.Short, /*1*/ end: jet.Short, /*2*/ increment: jet.Int) - public open override /*1*/ val end: jet.Short - public open override /*1*/ fun (): jet.Short - public open override /*1*/ val increment: jet.Int - public open override /*1*/ fun (): jet.Int - public open override /*1*/ val start: jet.Short - public open override /*1*/ fun (): jet.Short - public open override /*1*/ fun iterator(): jet.ShortIterator +public final class ShortProgression : kotlin.Progression { + /*primary*/ public constructor ShortProgression(/*0*/ start: kotlin.Short, /*1*/ end: kotlin.Short, /*2*/ increment: kotlin.Int) + public open override /*1*/ val end: kotlin.Short + public open override /*1*/ fun (): kotlin.Short + public open override /*1*/ val increment: kotlin.Int + public open override /*1*/ fun (): kotlin.Int + public open override /*1*/ val start: kotlin.Short + public open override /*1*/ fun (): kotlin.Short + public open override /*1*/ fun iterator(): kotlin.ShortIterator } -internal final class ShortProgressionIterator : jet.ShortIterator { - /*primary*/ public constructor ShortProgressionIterator(/*0*/ start: jet.Short, /*1*/ end: jet.Short, /*2*/ increment: jet.Int) - private final val finalElement: jet.Short - private final fun (): jet.Short - private final var hasNext: jet.Boolean - private final fun (): jet.Boolean - private final fun (/*0*/ : jet.Boolean): jet.Unit - internal final val increment: jet.Int - internal final fun (): jet.Int - private final var next: jet.Int - private final fun (): jet.Int - private final fun (/*0*/ : jet.Int): jet.Unit - public open override /*1*/ fun hasNext(): jet.Boolean - public final override /*1*/ /*fake_override*/ fun next(): jet.Short - public open override /*1*/ fun nextShort(): jet.Short +internal final class ShortProgressionIterator : kotlin.ShortIterator { + /*primary*/ public constructor ShortProgressionIterator(/*0*/ start: kotlin.Short, /*1*/ end: kotlin.Short, /*2*/ increment: kotlin.Int) + private final val finalElement: kotlin.Short + private final fun (): kotlin.Short + private final var hasNext: kotlin.Boolean + private final fun (): kotlin.Boolean + private final fun (/*0*/ : kotlin.Boolean): kotlin.Unit + internal final val increment: kotlin.Int + internal final fun (): kotlin.Int + private final var next: kotlin.Int + private final fun (): kotlin.Int + private final fun (/*0*/ : kotlin.Int): kotlin.Unit + public open override /*1*/ fun hasNext(): kotlin.Boolean + public final override /*1*/ /*fake_override*/ fun next(): kotlin.Short + public open override /*1*/ fun nextShort(): kotlin.Short } -public final class ShortRange : jet.Range, jet.Progression { - /*primary*/ public constructor ShortRange(/*0*/ start: jet.Short, /*1*/ end: jet.Short) - public open override /*2*/ val end: jet.Short - public open override /*2*/ fun (): jet.Short - public open override /*1*/ val increment: jet.Int - public open override /*1*/ fun (): jet.Int - public open override /*2*/ val start: jet.Short - public open override /*2*/ fun (): jet.Short - public open override /*1*/ fun contains(/*0*/ item: jet.Short): jet.Boolean - public open override /*1*/ fun iterator(): jet.ShortIterator +public final class ShortRange : kotlin.Range, kotlin.Progression { + /*primary*/ public constructor ShortRange(/*0*/ start: kotlin.Short, /*1*/ end: kotlin.Short) + public open override /*2*/ val end: kotlin.Short + public open override /*2*/ fun (): kotlin.Short + public open override /*1*/ val increment: kotlin.Int + public open override /*1*/ fun (): kotlin.Int + public open override /*2*/ val start: kotlin.Short + public open override /*2*/ fun (): kotlin.Short + public open override /*1*/ fun contains(/*0*/ item: kotlin.Short): kotlin.Boolean + public open override /*1*/ fun iterator(): kotlin.ShortIterator public class object { /*primary*/ private constructor () - public final val EMPTY: jet.ShortRange - public final fun (): jet.ShortRange + public final val EMPTY: kotlin.ShortRange + public final fun (): kotlin.ShortRange } } -public final class String : jet.Comparable, jet.CharSequence { +public final class String : kotlin.Comparable, kotlin.CharSequence { /*primary*/ public constructor String() - public open override /*1*/ val length: jet.Int - public open override /*1*/ fun (): jet.Int - public open override /*1*/ fun compareTo(/*0*/ that: jet.String): jet.Int - public open override /*1*/ fun get(/*0*/ index: jet.Int): jet.Char - public final fun plus(/*0*/ other: jet.Any?): jet.String + public open override /*1*/ val length: kotlin.Int + public open override /*1*/ fun (): kotlin.Int + public open override /*1*/ fun compareTo(/*0*/ that: kotlin.String): kotlin.Int + public open override /*1*/ fun get(/*0*/ index: kotlin.Int): kotlin.Char + public final fun plus(/*0*/ other: kotlin.Any?): kotlin.String } public open class Throwable { - /*primary*/ public constructor Throwable(/*0*/ message: jet.String? = ..., /*1*/ cause: jet.Throwable? = ...) - public final fun getCause(): jet.Throwable? - public final fun getMessage(): jet.String? - public final fun printStackTrace(): jet.Unit + /*primary*/ public constructor Throwable(/*0*/ message: kotlin.String? = ..., /*1*/ cause: kotlin.Throwable? = ...) + public final fun getCause(): kotlin.Throwable? + public final fun getMessage(): kotlin.String? + public final fun printStackTrace(): kotlin.Unit } public final class Unit { @@ -1680,37 +1680,37 @@ public final class Unit { public class object { /*primary*/ private constructor () - public final val VALUE: jet.Unit - public final fun (): jet.Unit + public final val VALUE: kotlin.Unit + public final fun (): kotlin.Unit } } -public final annotation class data : jet.Annotation { +public final annotation class data : kotlin.Annotation { /*primary*/ public constructor data() } -public final annotation class deprecated : jet.Annotation { - /*primary*/ public constructor deprecated(/*0*/ value: jet.String) - internal final val value: jet.String - internal final fun (): jet.String +public final annotation class deprecated : kotlin.Annotation { + /*primary*/ public constructor deprecated(/*0*/ value: kotlin.String) + internal final val value: kotlin.String + internal final fun (): kotlin.String } -public final annotation class inline : jet.Annotation { - /*primary*/ public constructor inline(/*0*/ strategy: jet.InlineStrategy = ...) - public final val strategy: jet.InlineStrategy - public final fun (): jet.InlineStrategy +public final annotation class inline : kotlin.Annotation { + /*primary*/ public constructor inline(/*0*/ strategy: kotlin.InlineStrategy = ...) + public final val strategy: kotlin.InlineStrategy + public final fun (): kotlin.InlineStrategy } -public final annotation class noinline : jet.Annotation { +public final annotation class noinline : kotlin.Annotation { /*primary*/ public constructor noinline() } -public final annotation class suppress : jet.Annotation { - /*primary*/ public constructor suppress(/*0*/ vararg names: jet.String /*jet.Array*/) - internal final val names: jet.Array - internal final fun (): jet.Array +public final annotation class suppress : kotlin.Annotation { + /*primary*/ public constructor suppress(/*0*/ vararg names: kotlin.String /*kotlin.Array*/) + internal final val names: kotlin.Array + internal final fun (): kotlin.Array } -public final annotation class tailRecursive : jet.Annotation { +public final annotation class tailRecursive : kotlin.Annotation { /*primary*/ public constructor tailRecursive() } diff --git a/compiler/tests/org/jetbrains/jet/descriptors/serialization/LoadBuiltinsTest.java b/compiler/tests/org/jetbrains/jet/descriptors/serialization/LoadBuiltinsTest.java index 990994064c9..aeedd2c952d 100644 --- a/compiler/tests/org/jetbrains/jet/descriptors/serialization/LoadBuiltinsTest.java +++ b/compiler/tests/org/jetbrains/jet/descriptors/serialization/LoadBuiltinsTest.java @@ -28,6 +28,7 @@ import org.jetbrains.jet.lang.descriptors.PackageFragmentDescriptor; import org.jetbrains.jet.lang.psi.JetFile; import org.jetbrains.jet.lang.resolve.lazy.KotlinTestWithEnvironment; import org.jetbrains.jet.lang.resolve.lazy.LazyResolveTestUtil; +import org.jetbrains.jet.lang.resolve.lazy.descriptors.LazyPackageDescriptor; import org.jetbrains.jet.lang.types.lang.KotlinBuiltIns; import org.jetbrains.jet.renderer.DescriptorRenderer; import org.jetbrains.jet.renderer.DescriptorRendererBuilder; @@ -58,16 +59,21 @@ public class LoadBuiltinsTest extends KotlinTestWithEnvironment { allFilesUnder("core/builtins/native"), allFilesUnder("core/builtins/src") )); + + PackageFragmentDescriptor deserialized = KotlinBuiltIns.getInstance().getBuiltInsPackageFragment(); + ModuleDescriptor module = LazyResolveTestUtil.resolveLazily(files, getEnvironment(), false); List fragments = module.getPackageFragmentProvider().getPackageFragments(KotlinBuiltIns.BUILT_INS_PACKAGE_FQ_NAME); - assertSize(1, fragments); - PackageFragmentDescriptor fromLazyResolve = fragments.iterator().next(); - PackageFragmentDescriptor deserialized = KotlinBuiltIns.getInstance().getBuiltInsPackageFragment(); - RecursiveDescriptorComparator.validateAndCompareDescriptors( - fromLazyResolve, deserialized, configuration, - new File("compiler/testData/builtin-classes.txt") - ); + for (PackageFragmentDescriptor fromLazyResolve : fragments) { + if (fromLazyResolve instanceof LazyPackageDescriptor) { + RecursiveDescriptorComparator.validateAndCompareDescriptors( + fromLazyResolve, deserialized, configuration, + new File("compiler/testData/builtin-classes.txt") + ); + break; + } + } } @NotNull