Merge pull request #601 from JetBrains/rr/yole/suppress-internal
Suppress documentation for the kotlin.internal package
This commit is contained in:
@@ -48,6 +48,7 @@ private fun differenceModulo(a: Long, b: Long, c: Long): Long {
|
||||
* @param end ending bound for the progression
|
||||
* @param increment increment, or difference of successive elements in the progression
|
||||
* @return the final element of the progression
|
||||
* @suppress
|
||||
*/
|
||||
public fun getProgressionFinalElement(start: Int, end: Int, increment: Int): Int {
|
||||
if (increment > 0) {
|
||||
@@ -69,6 +70,7 @@ public fun getProgressionFinalElement(start: Int, end: Int, increment: Int): Int
|
||||
* @param end ending bound for the progression
|
||||
* @param increment increment, or difference of successive elements in the progression
|
||||
* @return the final element of the progression
|
||||
* @suppress
|
||||
*/
|
||||
public fun getProgressionFinalElement(start: Long, end: Long, increment: Long): Long {
|
||||
if (increment > 0) {
|
||||
|
||||
@@ -18,4 +18,7 @@ package kotlin.reflect.jvm.internal
|
||||
|
||||
import kotlin.jvm.internal.ExtensionFunctionImpl
|
||||
|
||||
/**
|
||||
* @suppress
|
||||
*/
|
||||
public abstract class KExtensionFunctionImpl<in T, out R> : ExtensionFunctionImpl<T, R>()
|
||||
|
||||
@@ -18,4 +18,7 @@ package kotlin.reflect.jvm.internal
|
||||
|
||||
import kotlin.jvm.internal.FunctionImpl
|
||||
|
||||
/**
|
||||
* @suppress
|
||||
*/
|
||||
public abstract class KFunctionImpl<out R> : FunctionImpl<R>()
|
||||
|
||||
@@ -18,6 +18,9 @@ package kotlin.reflect.jvm.internal
|
||||
|
||||
import java.io.Serializable
|
||||
|
||||
/**
|
||||
* @suppress
|
||||
*/
|
||||
public abstract class KMemberFunctionImpl<in T, out R> : Serializable {
|
||||
override fun toString() = "${javaClass.getGenericInterfaces().first()}"
|
||||
}
|
||||
|
||||
@@ -19,6 +19,9 @@ package kotlin.reflect.jvm.internal;
|
||||
import kotlin.jvm.internal.ReflectionFactory;
|
||||
import kotlin.reflect.*;
|
||||
|
||||
/**
|
||||
* @suppress
|
||||
*/
|
||||
@SuppressWarnings({"UnusedDeclaration", "unchecked"})
|
||||
public class ReflectionFactoryImpl extends ReflectionFactory {
|
||||
@Override
|
||||
|
||||
@@ -20,6 +20,7 @@ import org.jetbrains.annotations.NotNull;
|
||||
|
||||
/**
|
||||
* A persistent map from non-null keys to non-null values.
|
||||
* @suppress
|
||||
*/
|
||||
public final class HashPMap<K, V> {
|
||||
private static final HashPMap<Object, Object> EMPTY = new HashPMap<Object, Object>(IntTreePMap.<ConsPStack<MapEntry<Object, Object>>>empty(), 0);
|
||||
|
||||
Reference in New Issue
Block a user