Skip to content

Commit bf44f75

Browse files
convert kdocs fixes, covnert to remove
1 parent 74b3102 commit bf44f75

File tree

12 files changed

+167
-111
lines changed

12 files changed

+167
-111
lines changed

core/api/core.api

Lines changed: 38 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1529,7 +1529,6 @@ public final class org/jetbrains/kotlinx/dataframe/api/ConvertKt {
15291529
public static final fun convertToStringFromT (Lorg/jetbrains/kotlinx/dataframe/DataColumn;)Lorg/jetbrains/kotlinx/dataframe/DataColumn;
15301530
public static final fun convertToURL (Lorg/jetbrains/kotlinx/dataframe/DataColumn;)Lorg/jetbrains/kotlinx/dataframe/DataColumn;
15311531
public static final fun convertToURLFromStringNullable (Lorg/jetbrains/kotlinx/dataframe/DataColumn;)Lorg/jetbrains/kotlinx/dataframe/DataColumn;
1532-
public static final fun to (Lorg/jetbrains/kotlinx/dataframe/api/Convert;Lkotlin/jvm/functions/Function2;)Lorg/jetbrains/kotlinx/dataframe/DataFrame;
15331532
public static final fun to (Lorg/jetbrains/kotlinx/dataframe/api/Convert;Lkotlin/reflect/KType;)Lorg/jetbrains/kotlinx/dataframe/DataFrame;
15341533
public static final fun toBigDecimal (Lorg/jetbrains/kotlinx/dataframe/api/Convert;)Lorg/jetbrains/kotlinx/dataframe/DataFrame;
15351534
public static final fun toBigDecimalTAny (Lorg/jetbrains/kotlinx/dataframe/api/Convert;)Lorg/jetbrains/kotlinx/dataframe/DataFrame;
@@ -5604,6 +5603,18 @@ public abstract interface class org/jetbrains/kotlinx/dataframe/impl/aggregation
56045603
public abstract fun indexOfAggregationResultSingleSequence (Lkotlin/sequences/Sequence;Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/ValueType;)I
56055604
}
56065605

5606+
public abstract interface class org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/AggregatorHandler {
5607+
public abstract fun getAggregator ()Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/Aggregator;
5608+
public fun init (Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/Aggregator;)V
5609+
public abstract fun setAggregator (Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/Aggregator;)V
5610+
}
5611+
5612+
public abstract interface class org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/AggregatorInputHandler : org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/AggregatorHandler {
5613+
public abstract fun calculateValueType (Ljava/util/Set;)Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/ValueType;
5614+
public abstract fun calculateValueType (Lkotlin/sequences/Sequence;)Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/ValueType;
5615+
public abstract fun preprocessAggregation (Lkotlin/sequences/Sequence;Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/ValueType;)Lkotlin/Pair;
5616+
}
5617+
56075618
public final class org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/AggregatorKt {
56085619
public static final fun aggregate (Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/Aggregator;Lkotlin/sequences/Sequence;Lkotlin/reflect/KType;)Ljava/lang/Object;
56095620
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;
@@ -5613,6 +5624,11 @@ public final class org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/
56135624
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
56145625
}
56155626

5627+
public abstract interface class org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/AggregatorMultipleColumnsHandler : org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/AggregatorHandler {
5628+
public abstract fun aggregateMultipleColumns (Lkotlin/sequences/Sequence;)Ljava/lang/Object;
5629+
public abstract fun calculateReturnTypeMultipleColumns (Ljava/util/Set;Z)Lkotlin/reflect/KType;
5630+
}
5631+
56165632
public final class org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/AggregatorOptionSwitch1 {
56175633
public static final field Companion Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/AggregatorOptionSwitch1$Companion;
56185634
public fun <init> (Ljava/lang/String;Lkotlin/jvm/functions/Function1;)V
@@ -5634,7 +5650,9 @@ public final class org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/
56345650
}
56355651

56365652
public final class org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/AggregatorOptionSwitch2$Companion {
5637-
public final fun Factory (Lkotlin/jvm/functions/Function2;)Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/Provider;
5653+
}
5654+
5655+
public abstract interface class org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/AggregatorProvider : org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/Provider {
56385656
}
56395657

56405658
public final class org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/Aggregators {
@@ -5652,6 +5670,24 @@ public final class org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/
56525670
public final fun percentileNumbers (DZ)Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/Aggregator;
56535671
}
56545672

5673+
public abstract interface class org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/Provider {
5674+
public abstract fun create (Ljava/lang/String;)Ljava/lang/Object;
5675+
}
5676+
5677+
public final class org/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/ValueType {
5678+
public fun <init> (Lkotlin/reflect/KType;Z)V
5679+
public synthetic fun <init> (Lkotlin/reflect/KType;ZILkotlin/jvm/internal/DefaultConstructorMarker;)V
5680+
public final fun component1 ()Lkotlin/reflect/KType;
5681+
public final fun component2 ()Z
5682+
public final fun copy (Lkotlin/reflect/KType;Z)Lorg/jetbrains/kotlinx/dataframe/impl/aggregation/aggregators/ValueType;
5683+
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;
5684+
public fun equals (Ljava/lang/Object;)Z
5685+
public final fun getKType ()Lkotlin/reflect/KType;
5686+
public final fun getNeedsFullConversion ()Z
5687+
public fun hashCode ()I
5688+
public fun toString ()Ljava/lang/String;
5689+
}
5690+
56555691
public final class org/jetbrains/kotlinx/dataframe/impl/aggregation/modes/NoAggregationKt {
56565692
public static final fun aggregateValue (Lorg/jetbrains/kotlinx/dataframe/api/Grouped;Ljava/lang/String;Lkotlin/jvm/functions/Function2;)Lorg/jetbrains/kotlinx/dataframe/DataFrame;
56575693
}

0 commit comments

Comments
 (0)