This commit is contained in:
2026-03-16 14:48:10 +03:00
parent ab16418dad
commit 84701bcfde
3 changed files with 9 additions and 4 deletions

View File

@@ -34,6 +34,12 @@ namespace hr
return res;
}
std::size_t size()
{
if (!empty()) return m_data.at(0).m_value.size();
else return 0;
}
std::vector<bit> m_data;
};
}