JUCE  v6.1.6 (6.0.8-1114)
JUCE API
Looking for a senior C++ dev?
I'm looking for work. Hire me!
juce_Functional.h File Reference
This graph shows which files directly or indirectly include this file:

Classes

struct  juce::NullCheckedInvocation
 Some helper methods for checking a callable object before invoking with the specified arguments. More...
 

Namespaces

 juce
 

Typedefs

template<typename A , typename B >
using juce::DisableIfSameOrDerived = typename std::enable_if_t<! std::is_base_of< A, std::remove_reference_t< B > >::value >
 Can be used to disable template constructors that would otherwise cause ambiguity with compiler-generated copy and move constructors. More...
 

Functions

template<typename Object , typename OtherObject , typename Member >
Object juce::withMember (Object copy, Member OtherObject::*member, Member &&value)
 Copies an object, sets one of the copy's members to the specified value, and then returns the copy. More...