JUCE  v6.1.6 (6.0.8-1114)
JUCE API
Looking for a senior C++ dev?
I'm looking for work. Hire me!
juce::DefaultElementComparator< ElementType > Class Template Reference

A simple ElementComparator class that can be used to sort an array of objects that support the '<' operator. More...

#include <juce_ElementComparator.h>

Static Public Member Functions

static int compareElements (ParameterType first, ParameterType second)
 

Private Types

using ParameterType = typename TypeHelpers::ParameterType< ElementType >::type
 

Detailed Description

template<class ElementType>
class juce::DefaultElementComparator< ElementType >

A simple ElementComparator class that can be used to sort an array of objects that support the '<' operator.

This will work for primitive types and objects that implement operator<().

Example:

Array<int> myArray;
DefaultElementComparator<int> sorter;
myArray.sort (sorter);
See also
ElementComparator

@tags{Core}

Member Typedef Documentation

◆ ParameterType

template<class ElementType >
using juce::DefaultElementComparator< ElementType >::ParameterType = typename TypeHelpers::ParameterType<ElementType>::type
private

Member Function Documentation

◆ compareElements()

template<class ElementType >
static int juce::DefaultElementComparator< ElementType >::compareElements ( ParameterType  first,
ParameterType  second 
)
inlinestatic

References juce::gl::first.


The documentation for this class was generated from the following file: