Shows how to use xtd::ranges::views::order_by_descending_view class.
#include <xtd/xtd>
auto main() -> int {
auto numbers = array {2, 7, 3, 1, 4, 10, 5, 6, 8, 9};
console::write_line("numbers = {}", order_by_descending(numbers, [](auto n) {return n;}));
}