yusuke
1/12/2020 - 7:33 AM

struct

struct A {
  int a;
  bool operator<(const auto &right) const {
    return a < right.a;
  }
};