إشعار
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تسجيل الدخول أو تغيير الدلائل.
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تغيير الدلائل.
Syntax
List.Reverse(list as list) as list
About
Returns a list with the values in the list list in reversed order.
Example 1
Create a list from {1..10} in reverse order.
Usage
List.Reverse({1..10})
Output
{10, 9, 8, 7, 6, 5, 4, 3, 2, 1}