मुख्य कंटेंट तक स्किप करें

List.AllTrue

अगर सभी व्यंजक true हैं, तो true लौटाता है.

Syntax

List.AllTrue(
list as list
) as logical

Remarks

अगर सूची list के सभी व्यंजक true हैं, तो true लौटाता है.

Examples

Example #1

निर्धारित करें कि क्या सूची {true, true, 2 > 0} के सभी व्यंजक true हैं.

List.AllTrue({true, true, 2 > 0})

Result:

true

Example #2

निर्धारित करें कि क्या सूची {true, true, 2 < 0} के सभी व्यंजक true हैं.

List.AllTrue({true, false, 2 < 0})

Result:

false

Category

List.Membership functions