@@ -47,17 +47,17 @@ public fun <T, C> Update<T, C>.at(rowIndices: Collection<Int>): Update<T, C> = w
47
47
public fun <T , C > Update <T , C >.at (vararg rowIndices : Int ): Update <T , C > = at(rowIndices.toSet())
48
48
public fun <T , C > Update <T , C >.at (rowRange : IntRange ): Update <T , C > = where { index in rowRange }
49
49
50
- public infix fun <T , C > Update <T , C >.perRowCol (expression : RowColumnExpression <T , C , C >): DataFrame <T > =
50
+ public fun <T , C > Update <T , C >.perRowCol (expression : RowColumnExpression <T , C , C >): DataFrame <T > =
51
51
updateImpl { row, column, _ -> expression(row, column) }
52
52
53
53
public typealias UpdateExpression <T , C , R > = AddDataRow <T >.(C ) -> R
54
54
55
- public infix fun <T , C > Update <T , C >.with (expression : UpdateExpression <T , C , C ?>): DataFrame <T > =
55
+ public fun <T , C > Update <T , C >.with (expression : UpdateExpression <T , C , C ?>): DataFrame <T > =
56
56
updateImpl { row, _, value ->
57
57
expression(row, value)
58
58
}
59
59
60
- public infix fun <T , C , R > Update <T , DataRow <C >>.asFrame (expression : DataFrameExpression <C , DataFrame <R >>): DataFrame <T > =
60
+ public fun <T , C , R > Update <T , DataRow <C >>.asFrame (expression : DataFrameExpression <C , DataFrame <R >>): DataFrame <T > =
61
61
asFrameImpl(expression)
62
62
63
63
public fun <T , C > Update <T , C >.asNullable (): Update <T , C ?> = this as Update <T , C ?>
@@ -110,4 +110,4 @@ public fun <T, C> Update<T, C>.withNull(): DataFrame<T> = asNullable().withValue
110
110
111
111
public fun <T , C > Update <T , C >.withZero (): DataFrame <T > = updateWithValuePerColumnImpl { 0 as C }
112
112
113
- public infix fun <T , C > Update <T , C >.withValue (value : C ): DataFrame <T > = with { value }
113
+ public fun <T , C > Update <T , C >.withValue (value : C ): DataFrame <T > = with { value }
0 commit comments