إشعار: يجب
إثبات أهلية جميع المشاريع غير التجارية المسجّلة لاستخدام Earth Engine قبل
15 أبريل 2025 من أجل الحفاظ على إمكانية الوصول إلى Earth Engine.
ee.List.containsAll
تنظيم صفحاتك في مجموعات
يمكنك حفظ المحتوى وتصنيفه حسب إعداداتك المفضّلة.
تعرض هذه الدالة القيمة "صحيح" إذا كانت القائمة تحتوي على جميع عناصر القائمة الأخرى، بغض النظر عن الترتيب.
الاستخدام | المرتجعات |
---|
List.containsAll(other) | منطقي |
الوسيطة | النوع | التفاصيل |
---|
هذا: list | قائمة | |
other | قائمة | |
إنّ محتوى هذه الصفحة مرخّص بموجب ترخيص Creative Commons Attribution 4.0 ما لم يُنصّ على خلاف ذلك، ونماذج الرموز مرخّصة بموجب ترخيص Apache 2.0. للاطّلاع على التفاصيل، يُرجى مراجعة سياسات موقع Google Developers. إنّ Java هي علامة تجارية مسجَّلة لشركة Oracle و/أو شركائها التابعين.
تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)
[null,null,["تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)"],[[["\u003cp\u003eReturns \u003ccode\u003etrue\u003c/code\u003e only if the original list contains every single element in the \u003ccode\u003eother\u003c/code\u003e list, ignoring element ordering.\u003c/p\u003e\n"],["\u003cp\u003eThis method compares two lists and provides a boolean indicating whether one completely encompasses the other.\u003c/p\u003e\n"],["\u003cp\u003eAccepts two arguments: the original list (\u003ccode\u003ethis: list\u003c/code\u003e) and the comparison list (\u003ccode\u003eother\u003c/code\u003e).\u003c/p\u003e\n"]]],["The `List.containsAll(other)` function checks if a list (`list`) contains all elements present in another list (`other`), irrespective of their order. It takes another list (`other`) as an argument. The function then returns a boolean value, `true` if all elements from `other` are present in `list`, and `false` otherwise.\n"],null,["# ee.List.containsAll\n\nReturns true if list contains all of the elements of other, regardless of order.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|---------------------------|---------|\n| List.containsAll`(other)` | Boolean |\n\n| Argument | Type | Details |\n|--------------|------|---------|\n| this: `list` | List | |\n| `other` | List | |"]]