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
- for asynchronous logging, make the logger an active object according to Herb Sutter https://herbsutter.com/2010/07/12/effective-concurrency-prefer-using-active-objects-instead-of-naked-threads/
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 31 May 2022 at 11:34:55 CEST