Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions core/api/core.api
Original file line number Diff line number Diff line change
Expand Up @@ -192,14 +192,11 @@ public abstract interface class org/jetbrains/kotlinx/dataframe/aggregation/Colu

public final class org/jetbrains/kotlinx/dataframe/aggregation/NamedValue {
public static final field Companion Lorg/jetbrains/kotlinx/dataframe/aggregation/NamedValue$Companion;
public synthetic fun <init> (Lorg/jetbrains/kotlinx/dataframe/columns/ColumnPath;Ljava/lang/Object;Lkotlin/reflect/KType;Ljava/lang/Object;ZLkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Lorg/jetbrains/kotlinx/dataframe/columns/ColumnPath;
public final fun component2 ()Ljava/lang/Object;
public final fun component3 ()Lkotlin/reflect/KType;
public final fun component4 ()Ljava/lang/Object;
public final fun component5 ()Z
public final fun copy (Lorg/jetbrains/kotlinx/dataframe/columns/ColumnPath;Ljava/lang/Object;Lkotlin/reflect/KType;Ljava/lang/Object;Z)Lorg/jetbrains/kotlinx/dataframe/aggregation/NamedValue;
public static synthetic fun copy$default (Lorg/jetbrains/kotlinx/dataframe/aggregation/NamedValue;Lorg/jetbrains/kotlinx/dataframe/columns/ColumnPath;Ljava/lang/Object;Lkotlin/reflect/KType;Ljava/lang/Object;ZILjava/lang/Object;)Lorg/jetbrains/kotlinx/dataframe/aggregation/NamedValue;
public fun equals (Ljava/lang/Object;)Z
public final fun getDefault ()Ljava/lang/Object;
public final fun getGuessType ()Z
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import org.jetbrains.kotlinx.dataframe.impl.aggregation.ValueWithDefault
import org.jetbrains.kotlinx.dataframe.impl.emptyPath
import kotlin.reflect.KType

@Suppress("DataClassPrivateConstructor")
public data class NamedValue private constructor(
@ConsistentCopyVisibility
public data class NamedValue internal constructor(
val path: ColumnPath,
val value: Any?,
val type: KType?,
Expand Down
Loading