A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://en.cppreference.com/w/cpp/language/../algorithm/../../cpp/chrono/day/operator_cmp.html below:

std::chrono::operator==,<=>(std::chrono::day) - cppreference.com

Compare the two std::chrono::day x and y.

The <, <=, >, >=, and != operators are synthesized from operator<=> and operator== respectively.

[edit] Return value

1) unsigned(x) == unsigned(y)

2) unsigned(x) <=> unsigned(y)

[edit] Example
#include <chrono>
#include <iostream>
 
int main()
{
    constexpr std::chrono::day x{13}, y{31};
    static_assert(x != y);
 
    if constexpr (constexpr auto res = x <=> y; res < 0)
        std::cout << "x is less than y\n";
    else if constexpr (res > 0)
        std::cout << "x is greater than y\n";
    else
        std::cout << "x and y are equal\n";
 
    using namespace std::literals::chrono_literals;
 
    static_assert
    (
        (6d < 9d) && (6d == 6d) && (6d <= 9d) &&
        (9d > 6d) && (9d != 6d) && (9d >= 6d)
    );
}

Output:


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4