You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/api/core.api
+38-1
Original file line number
Diff line number
Diff line change
@@ -5627,6 +5627,18 @@ public abstract interface class org/jetbrains/kotlinx/dataframe/impl/aggregation
5627
5627
public abstract fun indexOfAggregationResultSingleSequence (Lkotlin/sequences/Sequence;Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/ValueType;)I
5628
5628
}
5629
5629
5630
+
public abstract interface class org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/AggregatorHandler {
5631
+
public abstract fun getAggregator ()Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/Aggregator;
5632
+
public fun init (Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/Aggregator;)V
5633
+
public abstract fun setAggregator (Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/Aggregator;)V
5634
+
}
5635
+
5636
+
public abstract interface class org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/AggregatorInputHandler : org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/AggregatorHandler {
5637
+
public abstract fun calculateValueType (Ljava/util/Set;)Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/ValueType;
5638
+
public abstract fun calculateValueType (Lkotlin/sequences/Sequence;)Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/ValueType;
5639
+
public abstract fun preprocessAggregation (Lkotlin/sequences/Sequence;Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/ValueType;)Lkotlin/Pair;
5640
+
}
5641
+
5630
5642
public final class org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/AggregatorKt {
5631
5643
public static final fun aggregate (Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/Aggregator;Lkotlin/sequences/Sequence;Lkotlin/reflect/KType;)Ljava/lang/Object;
5632
5644
public static final fun aggregate (Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/Aggregator;Lkotlin/sequences/Sequence;Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/ValueType;)Ljava/lang/Object;
@@ -5636,6 +5648,11 @@ public final class org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/
5636
5648
public static final fun indexOfAggregationResult (Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/Aggregator;Lkotlin/sequences/Sequence;Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/ValueType;)I
5637
5649
}
5638
5650
5651
+
public abstract interface class org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/AggregatorMultipleColumnsHandler : org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/AggregatorHandler {
5652
+
public abstract fun aggregateMultipleColumns (Lkotlin/sequences/Sequence;)Ljava/lang/Object;
5653
+
public abstract fun calculateReturnTypeMultipleColumns (Ljava/util/Set;Z)Lkotlin/reflect/KType;
5654
+
}
5655
+
5639
5656
public final class org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/AggregatorOptionSwitch1 {
5640
5657
public static final field Companion Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/AggregatorOptionSwitch1$Companion;
5641
5658
public fun <init> (Ljava/lang/String;Lkotlin/jvm/functions/Function1;)V
@@ -5657,7 +5674,9 @@ public final class org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/
5657
5674
}
5658
5675
5659
5676
public final class org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/AggregatorOptionSwitch2$Companion {
5660
-
public final fun Factory (Lkotlin/jvm/functions/Function2;)Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/Provider;
5677
+
}
5678
+
5679
+
public abstract interface class org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/AggregatorProvider : org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/Provider {
5661
5680
}
5662
5681
5663
5682
public final class org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/Aggregators {
@@ -5675,6 +5694,24 @@ public final class org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/
5675
5694
public final fun percentileNumbers (DZ)Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/Aggregator;
5676
5695
}
5677
5696
5697
+
public abstract interface class org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/Provider {
5698
+
public abstract fun create (Ljava/lang/String;)Ljava/lang/Object;
5699
+
}
5700
+
5701
+
public final class org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/ValueType {
5702
+
public fun <init> (Lkotlin/reflect/KType;Z)V
5703
+
public synthetic fun <init> (Lkotlin/reflect/KType;ZILkotlin/jvm/internal/DefaultConstructorMarker;)V
5704
+
public final fun component1 ()Lkotlin/reflect/KType;
5705
+
public final fun component2 ()Z
5706
+
public final fun copy (Lkotlin/reflect/KType;Z)Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/ValueType;
5707
+
public static synthetic fun copy$default (Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/ValueType;Lkotlin/reflect/KType;ZILjava/lang/Object;)Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/ValueType;
5708
+
public fun equals (Ljava/lang/Object;)Z
5709
+
public final fun getKType ()Lkotlin/reflect/KType;
5710
+
public final fun getNeedsFullConversion ()Z
5711
+
public fun hashCode ()I
5712
+
public fun toString ()Ljava/lang/String;
5713
+
}
5714
+
5678
5715
public final class org/jetbrains/kotlinx/dataframe/impl/aggregation/modes/NoAggregationKt {
5679
5716
public static final fun aggregateValue (Lorg/jetbrains/kotlinx/dataframe/api/Grouped;Ljava/lang/String;Lkotlin/jvm/functions/Function2;)Lorg/jetbrains/kotlinx/dataframe/DataFrame;
0 commit comments