JUCE-7.0.12-0-g4f43011b96 JUCE-7.0.12-0-g4f43011b96
JUCE — C++ application framework with suport for VST, VST3, LV2 audio plug-ins

« « « Anklang Documentation
Loading...
Searching...
No Matches
Classes | Namespaces | Typedefs | Functions
juce_Functional.h File Reference

Go to the source code of this file.

Classes

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

Namespaces

namespace  juce
 JUCE Namespace.
 

Typedefs

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

Functions

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