الفرق بين المراجعتين لصفحة: «Kotlin/collections/associateByTo»
لا ملخص تعديل |
جميل-بيلوني (نقاش | مساهمات) طلا ملخص تعديل |
||
(8 مراجعات متوسطة بواسطة 3 مستخدمين غير معروضة) | |||
سطر 1: | سطر 1: | ||
<noinclude>{{DISPLAYTITLE: الدالة <code>associateByTo()</code> في | <noinclude>{{DISPLAYTITLE: الدالة <code>associateByTo()</code> في Kotlin}}</noinclude> | ||
تشبه الدالة <code>associateByTo()</code> الدالة <code>[[Kotlin/collections/associateBy|associateBy()]]</code> تمامًا باستثناء أنها تضيف الناتج الذي تعيده إلى خريطة موجودة مسبقًا. | |||
==البنية العامة== | ==البنية العامة== | ||
<syntaxhighlight lang="kotlin"> | |||
inline fun <T, K, M : MutableMap<in K, in T>> Array<out T>.associateByTo( | inline fun <T, K, M : MutableMap<in K, in T>> Array<out T>.associateByTo( | ||
destination: M, | destination: M, | ||
سطر 41: | سطر 39: | ||
keySelector: (Char) -> K | keySelector: (Char) -> K | ||
): M | ): M | ||
</syntaxhighlight> | </syntaxhighlight><syntaxhighlight lang="kotlin"> | ||
inline fun <T, K, V, M : MutableMap<in K, in V>> Array<out T>.associateByTo( | inline fun <T, K, V, M : MutableMap<in K, in V>> Array<out T>.associateByTo( | ||
destination: M, | destination: M, | ||
سطر 87: | سطر 85: | ||
valueTransform: (Char) -> V | valueTransform: (Char) -> V | ||
): M | ): M | ||
</syntaxhighlight> | </syntaxhighlight><syntaxhighlight lang="kotlin"> | ||
inline fun <T, K, M : MutableMap<in K, in T>> Iterable<T>.associateByTo( | inline fun <T, K, M : MutableMap<in K, in T>> Iterable<T>.associateByTo( | ||
destination: M, | destination: M, | ||
keySelector: (T) -> K | keySelector: (T) -> K | ||
): | ): | ||
inline fun <T, K, V, M : MutableMap<in K, in V>> Iterable<T>.associateByTo( | inline fun <T, K, V, M : MutableMap<in K, in V>> Iterable<T>.associateByTo( | ||
destination: M, | destination: M, | ||
سطر 98: | سطر 96: | ||
valueTransform: (T) -> V | valueTransform: (T) -> V | ||
): M | ): M | ||
</syntaxhighlight> | </syntaxhighlight>وجود الكلمة المفتاحية <code>inline</code> يدل على أنَّ هذه الدالة مباشرة (للمزيد من التفاصيل راجع <nowiki/>[[Kotlin/inline functions|توثيق الدوال المباشرة (inline functions)]]). | ||
== المعاملات == | |||
=== <code>destination</code> === | |||
[[Kotlin/collections/MutableMap|خريطة متغيرة]] تمثل الوجهة التي ستوضع فيها الخرائط التي تعيدها الدالة <code>associateByTo()</code>. | |||
=== <code>keySelector</code> === | |||
دالةٌ يمرر إليها كل عنصر من عناصر المصفوفة المعطاة على حدة وتعيد المفتاح المقابل لذلك المحرف المراد وضعه في الخريطة. | |||
=== <code>valueTransform</code> === | |||
دالةٌ يمرر إليها كل عنصر من عناصر المصفوفة المعطاة على حدة وتعيد القيمة المقابلة لذلك المحرف المراد وضعها في الخريطة. | |||
==القيم المعادة== | ==القيم المعادة== | ||
تعاد الخريطة <code>destination</code> بعد إضافة [[Kotlin/collections/Map|الخرائط]] التي تنشأ من الأزواج "مفتاح/قيمة" إليها، إذ يكون المفتاح (key) هو الناتج الذي تعيده الدالة <code>keySelector</code> وتكون القيمة (value) المقابلة لذلك المفتاح هي إمَّا عناصر المصفوفة المعطاة أو الناتج الذي تعيده الدالة <code>valueTransform</code>. | |||
==أمثلة== | ==أمثلة== | ||
استعمال <code>()associateByTo</code> مع تمرير المعامل <code>keySelector</code> فقط:<syntaxhighlight lang="kotlin"> | |||
fun main(args: Array<String>) { | fun main(args: Array<String>) { | ||
val list = listOf(1,2,3,4) | val list = listOf(1, 2, 3, 4) | ||
val map = mutableMapOf<Int, Int>() | val map = mutableMapOf<Int, Int>() | ||
val func: (Int) -> Int = {it*4} | val func: (Int) -> Int = { | ||
it * 4 | |||
} | |||
list.associateByTo(map,func) | list.associateByTo(map,func) | ||
سطر 114: | سطر 124: | ||
println(map) // {4=1, 8=2, 12=3, 16=4} | println(map) // {4=1, 8=2, 12=3, 16=4} | ||
} | } | ||
</syntaxhighlight> | </syntaxhighlight>استعمال الدالة <code>()associateByTo</code> مع تمرير المعامل <code>keySelector</code> والمعامل <code>valueTransform</code>:<syntaxhighlight lang="kotlin"> | ||
fun main(args: Array<String>) { | fun main(args: Array<String>) { | ||
val list = listOf(1,2,3,4) | val list = listOf(1, 2, 3, 4) | ||
val map = mutableMapOf<Int, Int>() | val map = mutableMapOf<Int, Int>() | ||
val func: (Int) -> Int = {it*4} | val func: (Int) -> Int = { | ||
val func2: (Int) -> Int = {it + 4 | it * 4 | ||
} | |||
val func2: (Int) -> Int = { | |||
it + 4 | |||
} | |||
list.associateByTo(map, func, func2) | |||
println(map) // {4=5, 8=6, 12=7, 16=8} | println(map) // {4=5, 8=6, 12=7, 16=8} | ||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==انظر أيضًا== | ==انظر أيضًا== | ||
*<code>[[Kotlin/collections/associateBy|associateBy()]]</code>: تعيد | *الدالة <code>[[Kotlin/collections/associateBy|associateBy()]]</code>: تعيد خريطةً تحتوي على عناصر المصفوفة أو المجموعة المعطاة مُفهرسة بناتج تمرير هذه العناصر إلى الدالة <code>keySelector</code>. | ||
*<code>[[Kotlin/collections/associate|associate()]]</code>: تعيد | *الدالة <code>[[Kotlin/collections/associate|associate()]]</code>: تعيد تعيد خريطةً تحوي أزواجًا من "مفتاح/قيمة" ناتجة عن تمرير عناصر المصفوفة أو المجموعة ([[Kotlin/collections|Collection]]) إلى الدالة <code>transform</code>. | ||
*<code>[[Kotlin/collections/asList|asList()]]</code>: تعيد لائحة | *الدالة <code>[[Kotlin/collections/asList|asList()]]</code>: تعيد لائحة تُغلّف المصفوفة الأصلية. | ||
*الدالة <code>[[Kotlin/collections/asIterable|asIterable()]]</code>: تُنشئ نسخة تكرارية (Iterable instance) تُغلّف المصفوفة الأصلية وتعيد عناصرها عندما تُستخدم في حلقات التكرار (مثل <code>[[Kotlin/control flow#.D8.AA.D8.B9.D8.A8.D9.8A.D8.B1 for|for]]</code>). | |||
* <code>[[Kotlin/collections/asIterable|asIterable()]]</code>: تُنشئ نسخة تكرارية (Iterable instance) | |||
==مصادر== | ==مصادر== | ||
*[https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/associate-by-to.html الدالة | *[https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/associate-by-to.html صفحة الدالة associateByTo() في التوثيق الرسميّ للمكتبة القياسيّة في لغة Kotlin.] | ||
[[تصنيف:Kotlin]] | [[تصنيف:Kotlin]] | ||
[[تصنيف:Kotlin | [[تصنيف:Kotlin Function]] | ||
[[تصنيف:Kotlin Collection]] |
المراجعة الحالية بتاريخ 07:05، 8 سبتمبر 2018
تشبه الدالة associateByTo()
الدالة associateBy()
تمامًا باستثناء أنها تضيف الناتج الذي تعيده إلى خريطة موجودة مسبقًا.
البنية العامة
inline fun <T, K, M : MutableMap<in K, in T>> Array<out T>.associateByTo(
destination: M,
keySelector: (T) -> K
): M
inline fun <K, M : MutableMap<in K, in Byte>> ByteArray.associateByTo(
destination: M,
keySelector: (Byte) -> K
): M
inline fun <K, M : MutableMap<in K, in Short>> ShortArray.associateByTo(
destination: M,
keySelector: (Short) -> K
): M
inline fun <K, M : MutableMap<in K, in Int>> IntArray.associateByTo(
destination: M,
keySelector: (Int) -> K
): M
inline fun <K, M : MutableMap<in K, in Long>> LongArray.associateByTo(
destination: M,
keySelector: (Long) -> K
): M
inline fun <K, M : MutableMap<in K, in Float>> FloatArray.associateByTo(
destination: M,
keySelector: (Float) -> K
): M
inline fun <K, M : MutableMap<in K, in Double>> DoubleArray.associateByTo(
destination: M,
keySelector: (Double) -> K
): M
inline fun <K, M : MutableMap<in K, in Boolean>> BooleanArray.associateByTo(
destination: M,
keySelector: (Boolean) -> K
): M
inline fun <K, M : MutableMap<in K, in Char>> CharArray.associateByTo(
destination: M,
keySelector: (Char) -> K
): M
inline fun <T, K, V, M : MutableMap<in K, in V>> Array<out T>.associateByTo(
destination: M,
keySelector: (T) -> K,
valueTransform: (T) -> V
): M
inline fun <K, V, M : MutableMap<in K, in V>> ByteArray.associateByTo(
destination: M,
keySelector: (Byte) -> K,
valueTransform: (Byte) -> V
): M
inline fun <K, V, M : MutableMap<in K, in V>> ShortArray.associateByTo(
destination: M,
keySelector: (Short) -> K,
valueTransform: (Short) -> V
): M
inline fun <K, V, M : MutableMap<in K, in V>> IntArray.associateByTo(
destination: M,
keySelector: (Int) -> K,
valueTransform: (Int) -> V
): M
inline fun <K, V, M : MutableMap<in K, in V>> LongArray.associateByTo(
destination: M,
keySelector: (Long) -> K,
valueTransform: (Long) -> V
): M
inline fun <K, V, M : MutableMap<in K, in V>> FloatArray.associateByTo(
destination: M,
keySelector: (Float) -> K,
valueTransform: (Float) -> V
): M
inline fun <K, V, M : MutableMap<in K, in V>> DoubleArray.associateByTo(
destination: M,
keySelector: (Double) -> K,
valueTransform: (Double) -> V
): M
inline fun <K, V, M : MutableMap<in K, in V>> BooleanArray.associateByTo(
destination: M,
keySelector: (Boolean) -> K,
valueTransform: (Boolean) -> V
): M
inline fun <K, V, M : MutableMap<in K, in V>> CharArray.associateByTo(
destination: M,
keySelector: (Char) -> K,
valueTransform: (Char) -> V
): M
inline fun <T, K, M : MutableMap<in K, in T>> Iterable<T>.associateByTo(
destination: M,
keySelector: (T) -> K
):
inline fun <T, K, V, M : MutableMap<in K, in V>> Iterable<T>.associateByTo(
destination: M,
keySelector: (T) -> K,
valueTransform: (T) -> V
): M
وجود الكلمة المفتاحية inline
يدل على أنَّ هذه الدالة مباشرة (للمزيد من التفاصيل راجع توثيق الدوال المباشرة (inline functions)).
المعاملات
destination
خريطة متغيرة تمثل الوجهة التي ستوضع فيها الخرائط التي تعيدها الدالة associateByTo()
.
keySelector
دالةٌ يمرر إليها كل عنصر من عناصر المصفوفة المعطاة على حدة وتعيد المفتاح المقابل لذلك المحرف المراد وضعه في الخريطة.
valueTransform
دالةٌ يمرر إليها كل عنصر من عناصر المصفوفة المعطاة على حدة وتعيد القيمة المقابلة لذلك المحرف المراد وضعها في الخريطة.
القيم المعادة
تعاد الخريطة destination
بعد إضافة الخرائط التي تنشأ من الأزواج "مفتاح/قيمة" إليها، إذ يكون المفتاح (key) هو الناتج الذي تعيده الدالة keySelector
وتكون القيمة (value) المقابلة لذلك المفتاح هي إمَّا عناصر المصفوفة المعطاة أو الناتج الذي تعيده الدالة valueTransform
.
أمثلة
استعمال ()associateByTo
مع تمرير المعامل keySelector
فقط:
fun main(args: Array<String>) {
val list = listOf(1, 2, 3, 4)
val map = mutableMapOf<Int, Int>()
val func: (Int) -> Int = {
it * 4
}
list.associateByTo(map,func)
println(map) // {4=1, 8=2, 12=3, 16=4}
}
استعمال الدالة ()associateByTo
مع تمرير المعامل keySelector
والمعامل valueTransform
:
fun main(args: Array<String>) {
val list = listOf(1, 2, 3, 4)
val map = mutableMapOf<Int, Int>()
val func: (Int) -> Int = {
it * 4
}
val func2: (Int) -> Int = {
it + 4
}
list.associateByTo(map, func, func2)
println(map) // {4=5, 8=6, 12=7, 16=8}
}
انظر أيضًا
- الدالة
associateBy()
: تعيد خريطةً تحتوي على عناصر المصفوفة أو المجموعة المعطاة مُفهرسة بناتج تمرير هذه العناصر إلى الدالةkeySelector
. - الدالة
associate()
: تعيد تعيد خريطةً تحوي أزواجًا من "مفتاح/قيمة" ناتجة عن تمرير عناصر المصفوفة أو المجموعة (Collection) إلى الدالةtransform
. - الدالة
asList()
: تعيد لائحة تُغلّف المصفوفة الأصلية. - الدالة
asIterable()
: تُنشئ نسخة تكرارية (Iterable instance) تُغلّف المصفوفة الأصلية وتعيد عناصرها عندما تُستخدم في حلقات التكرار (مثلfor
).