Closed tyanmahou closed 8 months ago
Statistics::Mode()
でも同様の問題を確認しました。昔のバージョンの HashTable
向けに書かれていたのが原因です。
v0.6.15 で修正します。ご報告ありがとうございました。
# include <Siv3D.hpp> // Siv3D v0.6.14
void Main()
{
{
Array<double> ar{ 1,1,2,2,3,3,3,4,5,5 };
auto multiMode = Statistics::MultiMode(ar.begin(), ar.end());
Print << multiMode;
}
{
Array<double> ar{ 1,1,2,2,3,3,3,4,5,5 };
auto mode = Statistics::Mode(ar.begin(), ar.end());
Print << mode;
}
while (System::Update())
{
}
}
エラーの内容 | Describe the build error Statistics::MultiModeでビルドエラーします。 存在しないメソッドを呼んでいるようです。
再現方法 | To Reproduce
ビルド環境 | Develop environment (please complete the following information):
備考 | Additional context