tidy: minor doc improvements + String::share() with explicit mm

This commit is contained in:
Roland Conybeare 2025-11-15 14:04:56 -05:00
commit 9761688cfe
4 changed files with 13 additions and 1 deletions

View file

@ -9,9 +9,13 @@
namespace xo {
namespace fn {
/** callback set using unique pointers to store callbacks **/
template <typename NativeFn>
using UpCallbackSet = CallbackSetImpl<std::unique_ptr<NativeFn>>;
/** callback set that invokes a specific member function on
* registered callback objects.
**/
template <typename NativeFn, typename MemberFn>
requires(callback_concept<NativeFn>)
class UpNotifyCallbackSet : public UpCallbackSet<NativeFn> {