الفرق بين المراجعتين لصفحة: «Kotlin/collections/toCollection»
< Kotlin | collections
لا ملخص تعديل |
جميل-بيلوني (نقاش | مساهمات) ط مراجعة وتدقيق. |
||
سطر 1: | سطر 1: | ||
تضيف الدالة<code>toCollection()</code> | <noinclude>{{DISPLAYTITLE: الدالة <code>toCollection()</code> في Kotlin}}</noinclude> | ||
تضيف الدالة <code>toCollection()</code> جميع عناصر [[Kotlin/Array|المصفوفة]] أو [[Kotlin/collections|المجموعة]] التي استُدعيت معها إلى [[Kotlin/MutableCollection|المجموعة المتغيرة]] (MutableCollection) المُمرّرة إليها. | |||
==البنية العامة== | ==البنية العامة== | ||
<syntaxhighlight lang="kotlin"> | <syntaxhighlight lang="kotlin"> | ||
سطر 34: | سطر 35: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==القيمة | ==القيمة المعادة== | ||
[[Kotlin/MutableCollection|المجموعة المتغيرة]] | تعاد [[Kotlin/MutableCollection|المجموعة المتغيرة]] <code>destination</code> الممررة بعد إضافة جميع عناصر [[Kotlin/Array|المصفوفة]] أو [[Kotlin/collections|المجموعة]] المعطاة إليها. | ||
==أمثلة== | ==أمثلة== | ||
<nowiki/><nowiki/>استعمال الدالة <code>()toCollection</code> لإضافة جميع عناصر مصفوفة إلى قائمة متغيرة:<syntaxhighlight lang="kotlin"> | |||
fun main(args: Array<String>) { | fun main(args: Array<String>) { | ||
val array = arrayOf(4, 5, 6) | val array = arrayOf(4, 5, 6) | ||
var list = mutableListOf(8, 7, 3) | var list = mutableListOf(8, 7, 3) | ||
println(array.toCollection(list)) | println(array.toCollection(list)) // [8, 7, 3, 4, 5, 6] | ||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== | ==انظر أيضًا== | ||
*<code>[[Kotlin/collections/toBooleanArray|toBooleanArray()]]</code> | *الدالة <code>[[Kotlin/collections/toBooleanArray|toBooleanArray()]]</code>: تحول [[Kotlin/Array|المصفوفة العامة]] (أي من النوع <code>Array<out Boolean></code>) أو <nowiki/>[[Kotlin/collections|المجموعة]] التي استُدعيت معها إلى [[Kotlin/Array|مصفوفة]] من القيم المنطقية (من النوع <code>[[Kotlin/BooleanArray/index|BooleanArray]]</code>). | ||
*<code>[[Kotlin/collections/toByteArray|toByteArray()]]</code> : | *الدالة <code>[[Kotlin/collections/toByteArray|toByteArray()]]</code> : تحوِّل [[Kotlin/Array|المصفوفة العامة]] (أي من النوع <code>Array<Byte></code>) أو [[Kotlin/collections|المجموعة]] التي استُدعيت معها إلى [[Kotlin/Array|مصفوفة]] من النوع <code>ByteArray</code>. | ||
*<code>[[Kotlin/collections/toDoubleArray|toDoubleArray()]]</code> : | *الدالة <code>[[Kotlin/collections/toCharArray|toCharArray()]]</code>: تحول [[Kotlin/Array|المصفوفة العامة]] (أي التي من النوع <code>Array<Char></code>) أو [[Kotlin/collections|المجموعة]] التي استُدعيت معها إلى [[Kotlin/Array|مصفوفة]] من النوع <code>[[Kotlin/CharArray/index|CharArray]]</code>. | ||
*الدالة <code>[[Kotlin/collections/toDoubleArray|toDoubleArray()]]</code> : تحول [[Kotlin/Array|المصفوفة العامة]] (أي من النوع <code>Array<Double></code>) أو [[Kotlin/collections|المجموعة]] التي استُدعيت معها إلى [[Kotlin/Array|مصفوفة]] من النوع <code>[[Kotlin/DoubleArray/index|DoubleArray]]</code>. | |||
*الدالة <code>[[Kotlin/collections/toFloatArray|toFloatArray()]]</code>: تحول [[Kotlin/Array|المصفوفة العامة]] (أي من النوع <code>Array<Float></code>) أو [[Kotlin/collections|المجموعة]] التي استُدعيت معها [[Kotlin/Array|مصفوفة]] من النوع <code>[[Kotlin/FloatArray/index|FloatArray]]</code>. | |||
==مصادر== | ==مصادر== | ||
*[https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/to-collection.html الدالة | *[https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/to-collection.html صفحة الدالة toCollection() في التوثيق الرسميّ للمكتبة القياسيّة في لغة Kotlin.] | ||
[[تصنيف:Kotlin]] | [[تصنيف:Kotlin]] | ||
[[تصنيف:Kotlin Functions]] | [[تصنيف:Kotlin Functions]] |
مراجعة 17:17، 8 أغسطس 2018
تضيف الدالة toCollection()
جميع عناصر المصفوفة أو المجموعة التي استُدعيت معها إلى المجموعة المتغيرة (MutableCollection) المُمرّرة إليها.
البنية العامة
fun <T, C : MutableCollection<in T>> Array<out T>.toCollection(
destination: C
): C
fun <C : MutableCollection<in Byte>> ByteArray.toCollection(
destination: C
): C
fun <C : MutableCollection<in Short>> ShortArray.toCollection(
destination: C
): C
fun <C : MutableCollection<in Int>> IntArray.toCollection(
destination: C
): C
fun <C : MutableCollection<in Long>> LongArray.toCollection(
destination: C
): C
fun <C : MutableCollection<in Float>> FloatArray.toCollection(
destination: C
): C
fun <C : MutableCollection<in Double>> DoubleArray.toCollection(
destination: C
): C
fun <C : MutableCollection<in Boolean>> BooleanArray.toCollection(
destination: C
): C
fun <C : MutableCollection<in Char>> CharArray.toCollection(
destination: C
): C
fun <T, C : MutableCollection<in T>> Iterable<T>.toCollection(
destination: C
): C
القيمة المعادة
تعاد المجموعة المتغيرة destination
الممررة بعد إضافة جميع عناصر المصفوفة أو المجموعة المعطاة إليها.
أمثلة
استعمال الدالة ()toCollection
لإضافة جميع عناصر مصفوفة إلى قائمة متغيرة:
fun main(args: Array<String>) {
val array = arrayOf(4, 5, 6)
var list = mutableListOf(8, 7, 3)
println(array.toCollection(list)) // [8, 7, 3, 4, 5, 6]
}
انظر أيضًا
- الدالة
toBooleanArray()
: تحول المصفوفة العامة (أي من النوعArray<out Boolean>
) أو المجموعة التي استُدعيت معها إلى مصفوفة من القيم المنطقية (من النوعBooleanArray
). - الدالة
toByteArray()
: تحوِّل المصفوفة العامة (أي من النوعArray<Byte>
) أو المجموعة التي استُدعيت معها إلى مصفوفة من النوعByteArray
. - الدالة
toCharArray()
: تحول المصفوفة العامة (أي التي من النوعArray<Char>
) أو المجموعة التي استُدعيت معها إلى مصفوفة من النوعCharArray
. - الدالة
toDoubleArray()
: تحول المصفوفة العامة (أي من النوعArray<Double>
) أو المجموعة التي استُدعيت معها إلى مصفوفة من النوعDoubleArray
. - الدالة
toFloatArray()
: تحول المصفوفة العامة (أي من النوعArray<Float>
) أو المجموعة التي استُدعيت معها مصفوفة من النوعFloatArray
.