intx
intx copied to clipboard
Add support for `operator <=>`
It seems current intx implementation is not compatible with C++20 operator <=>.
The test case is something like:
struct S
{
intx::uint256 x;
operator<=>() = default;
}