Adopt C++20 defaulted comparisons (operator== / <=>)

未關閉
#1,748 0 則留言 0 個 reaction 已指派 0 人 在 GitHub 檢視

還沒有人認領這個 Issue。

評估

難度
4/5
預估耗時
3-5 天
新手友好度
52/100
Issue 類型
重構
描述清晰度
基本清楚
活躍度
冷清
技術堆疊
cpp
領域
api

研究方向

找出定義明確 operator== 與 operator!= 配對的 node-addon-api 型別,接著檢查 Maybe 是否有順序比較。完成的標準是移除多餘的 != 多載,並將符合條件的 == 或 <=> 運算子設為 default,同時不改變比較行為。

由索引模型根據 Issue 內容生成。

描述

blocked SemVer-major

Several node-addon-api types define operator== and operator!= as an explicit pair, where the != is always return !operator==(other);. In C++20 the compiler synthesizes a != b from operator==, so the hand-written != overloads become redundant and can be removed. Where the comparison is plain memberwise equality, operator== itself can be = defaulted.

Regarding <=>, the only plausible type is Maybe<T> where T is ordered.

主要語言
C++
星號
2.4k
分支
499
平均合併
2 天 11 小時
30 天內合併 PR
2

貢獻指南

開啟貢獻指南

從這裡開始

  1. 先讀完整個 Issue,再讀專案的貢獻指南。
  2. 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
  3. Fork 儲存庫,在一個分支上完成修改。
  4. 送出 Pull Request,並在描述裡引用這個 Issue 編號。

nodejs/node-addon-api 的其他 Issue

查看 nodejs/node-addon-api 的全部 Issue

相似的 Issue

更多 C++ Issue

把新 issue 寄到你的電子郵件信箱

精選適合新手參與的 GitHub issue 摘要。