diff --git a/AK/MACAddress.h b/AK/MACAddress.h index 131581ef682..155d9500fcd 100644 --- a/AK/MACAddress.h +++ b/AK/MACAddress.h @@ -84,6 +84,11 @@ public: return all_of(m_data.begin(), m_data.end(), [](const auto octet) { return octet == 0; }); } + void copy_to(Bytes destination) const + { + m_data.span().copy_to(destination); + } + private: Array m_data {}; };