Functions.ArrayRepeat Method

Definition

Overloads

ArrayRepeat(Column, Int32)

Creates an array containing the left argument repeated the count number of times.

ArrayRepeat(Column, Column)

Creates an array containing the left argument repeated the number of times given by the right argument.

ArrayRepeat(Column, Int32)

Creates an array containing the left argument repeated the count number of times.

[Microsoft.Spark.Since("2.4.0")]
public static Microsoft.Spark.Sql.Column ArrayRepeat (Microsoft.Spark.Sql.Column left, int count);
[<Microsoft.Spark.Since("2.4.0")>]
static member ArrayRepeat : Microsoft.Spark.Sql.Column * int -> Microsoft.Spark.Sql.Column
Public Shared Function ArrayRepeat (left As Column, count As Integer) As Column

Parameters

left
Column

Left column expression

count
Int32

Number of times to repeat

Returns

Column object

Attributes

Applies to

ArrayRepeat(Column, Column)

Creates an array containing the left argument repeated the number of times given by the right argument.

[Microsoft.Spark.Since("2.4.0")]
public static Microsoft.Spark.Sql.Column ArrayRepeat (Microsoft.Spark.Sql.Column left, Microsoft.Spark.Sql.Column right);
[<Microsoft.Spark.Since("2.4.0")>]
static member ArrayRepeat : Microsoft.Spark.Sql.Column * Microsoft.Spark.Sql.Column -> Microsoft.Spark.Sql.Column
Public Shared Function ArrayRepeat (left As Column, right As Column) As Column

Parameters

left
Column

Left column expression

right
Column

Right column expression

Returns

Column object

Attributes

Applies to