# Utilities reference ## Header eventpp/utilities/eventutil.h ## API reference ```c++ template bool removeListener( DispatcherType & dispatcher, const typename DispatcherType::Event & event, const typename DispatcherType::Callback & listener ); ``` The function finds `listener` of `event` in `dispatcher`, if it finds one, removes the listener and returns true, otherwise returns false. Note: the function only removes the first found listener. To remove more than one listeners, repeat calling this function until it returns false. This function requires the listener be able to be compared with equal operator (==). ```c++ template bool removeListener( CallbackListType & callbackList, const typename CallbackListType::Callback & callback ); ``` The function finds `callback` in `callbackList`, if it finds one, removes the callback and returns true, otherwise returns false. Note: the function only removes the first found callback. To remove more than one callbacks, repeat calling this function until it returns false. This function requires the callback be able to be compared with equal operator (==). ```c++ template bool hasListener( DispatcherType & dispatcher, const typename DispatcherType::Event & event, const typename DispatcherType::Callback & listener ); ``` The function finds `listener` of `event` in `dispatcher`, returns true if it finds any one, otherwise returns false. This function requires the listener be able to be compared with equal operator (==). ```c++ template bool hasAnyListener( DispatcherType & dispatcher, const typename DispatcherType::Event & event ); ``` The function finds any listener of `event` in `dispatcher`, returns true if it finds any one, otherwise returns false. ```c++ template bool hasListener( CallbackListType & callbackList, const typename CallbackListType::Callback & callback ); ``` The function finds `callback` in `callbackList`, returns true if it finds one, otherwise returns false. This function requires the callback be able to be compared with equal operator (==). ```c++ template bool hasAnyListener( CallbackListType & callbackList ); ``` The function finds any callback in `callbackList`, returns true if it finds any one, otherwise returns false.