最終更新日時(UTC):
が更新

履歴 編集

function template
<stack>

std::operator<=>

namespace std {
  template <class T, class Container>
  compare_three_way_result_t<Container>
    operator<=>(const stack<T, Container>& x,
                const stack<T, Container>& y); // (1) C++20
}

概要

stack の三方比較を行う。

戻り値

x.c <=> y.c

#include <cassert>
#include <stack>

int main()
{
  std::stack<int> x;
  x.push(3);
  x.push(1);
  x.push(4);

  std::stack<int> y;
  y.push(3);
  y.push(1);
  y.push(4);

  assert((x <=> y) == 0);
}

出力

バージョン

言語

  • C++20

処理系

参照