Make all *Array.fill() extensions returning an array #KT-4760 Fixed

This commit is contained in:
Ilya Ryzhenkov
2014-04-04 15:27:24 +04:00
committed by Andrey Breslav
parent 1db035a0aa
commit d54fb97c5d
2 changed files with 33 additions and 11 deletions
+27 -9
View File
@@ -255,64 +255,82 @@ public fun ShortArray.copyOfRange(from: Int, to: Int) : ShortArray {
/**
* Fills original array with the provided value
*/
public fun <T> Array<out T>.fill(element: T) : Unit {
public fun <T> Array<out T>.fill(element: T) : Array<out T> {
Arrays.fill(this, element)
return this
}
/**
* Fills original array with the provided value
*/
public fun BooleanArray.fill(element: Boolean) : Unit {
public fun BooleanArray.fill(element: Boolean) : BooleanArray {
Arrays.fill(this, element)
return this
}
/**
* Fills original array with the provided value
*/
public fun ByteArray.fill(element: Byte) : Unit {
public fun ByteArray.fill(element: Byte) : ByteArray {
Arrays.fill(this, element)
return this
}
/**
* Fills original array with the provided value
*/
public fun CharArray.fill(element: Char) : Unit {
public fun CharArray.fill(element: Char) : CharArray {
Arrays.fill(this, element)
return this
}
/**
* Fills original array with the provided value
*/
public fun DoubleArray.fill(element: Double) : Unit {
public fun DoubleArray.fill(element: Double) : DoubleArray {
Arrays.fill(this, element)
return this
}
/**
* Fills original array with the provided value
*/
public fun FloatArray.fill(element: Float) : Unit {
public fun FloatArray.fill(element: Float) : FloatArray {
Arrays.fill(this, element)
return this
}
/**
* Fills original array with the provided value
*/
public fun IntArray.fill(element: Int) : Unit {
public fun IntArray.fill(element: Int) : IntArray {
Arrays.fill(this, element)
return this
}
/**
* Fills original array with the provided value
*/
public fun LongArray.fill(element: Long) : Unit {
public fun LongArray.fill(element: Long) : LongArray {
Arrays.fill(this, element)
return this
}
/**
* Fills original array with the provided value
*/
public fun ShortArray.fill(element: Short) : Unit {
public fun ShortArray.fill(element: Short) : ShortArray {
Arrays.fill(this, element)
return this
}
/**
@@ -43,9 +43,13 @@ fun specialJVM(): List<GenericFunction> {
templates add f("fill(element: T)") {
only(ArraysOfObjects, ArraysOfPrimitives)
doc { "Fills original array with the provided value" }
returns("Unit")
returns { "SELF" }
returns(ArraysOfObjects) { "Array<out T>" }
body {
"Arrays.fill(this, element)"
"""
Arrays.fill(this, element)
return this
"""
}
}