Skip to content

Todo List🔗

Member iox::cxx::string< Capacity >::operator!= (const char *const rhs) const noexcept

  • consider implementing the inequality operator for a char array for which the size is known at compile time; it could have the following signature template bool operator!=(const char (&rhs)[N]) const noexcept

Member iox::cxx::string< Capacity >::operator== (const char *const rhs) const noexcept

  • consider implementing the equality operator for a char array for which the size is known at compile time; it could have the following signature template bool operator==(const char (&rhs)[N]) const noexcept

Class iox::log::Logger

Member iox::log::Logger::LogStream

  • LogStream needs to call Log(); do we want to make Log() public?

Member iox::posix::Timer::now () noexcept

  • maybe move this to a clock implementation?

Member iox::posix::Timer::Timer (const units::Duration timeToWait) noexcept

  • refactor this cTor and its functionality to a class called StopWatch

Updated on 18 December 2023 at 13:11:43 CET