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

Holds a resizable array of primitive or copy-by-value objects. More...

#include <juce_Array.h>

Collaboration diagram for juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >:

Public Types

using ScopedLockType = typename TypeOfCriticalSectionToUse::ScopedLockType
 Returns the type of scoped lock to use for locking this array. More...
 

Public Member Functions

 Array ()=default
 Creates an empty array. More...
 
 Array (Array &&other) noexcept
 
 Array (const Array &other)
 Creates a copy of another array. More...
 
template<typename... OtherElements>
 Array (const ElementType &firstNewElement, OtherElements &&... otherElements)
 Initialises an Array from a list of items. More...
 
 Array (const ElementType &singleElementToAdd)
 Initialises an Array of size 1 containing a single element. More...
 
template<typename TypeToCreateFrom >
 Array (const std::initializer_list< TypeToCreateFrom > &items)
 
template<typename TypeToCreateFrom >
 Array (const TypeToCreateFrom *data)
 Initialises from a null-terminated raw array of values. More...
 
template<typename TypeToCreateFrom >
 Array (const TypeToCreateFrom *data, int numValues)
 Initialises from a raw array of values. More...
 
template<typename... OtherElements>
 Array (ElementType &&firstNewElement, OtherElements &&... otherElements)
 Initialises an Array from a list of items. More...
 
 Array (ElementType &&singleElementToAdd)
 Initialises an Array of size 1 containing a single element. More...
 
 ~Array ()=default
 Destructor. More...
 
template<typename... OtherElements>
void add (const ElementType &firstNewElement, OtherElements &&... otherElements)
 Appends multiple new elements at the end of the array. More...
 
void add (const ElementType &newElement)
 Appends a new element at the end of the array. More...
 
template<typename... OtherElements>
void add (ElementType &&firstNewElement, OtherElements &&... otherElements)
 Appends multiple new elements at the end of the array. More...
 
void add (ElementType &&newElement)
 Appends a new element at the end of the array. More...
 
template<class OtherArrayType >
void addArray (const OtherArrayType &arrayToAddFrom)
 Adds elements from another array to the end of this array. More...
 
template<class OtherArrayType >
std::enable_if<! std::is_pointer< OtherArrayType >::value, void >::type addArray (const OtherArrayType &arrayToAddFrom, int startIndex, int numElementsToAdd=-1)
 Adds elements from another array to the end of this array. More...
 
template<typename TypeToCreateFrom >
void addArray (const std::initializer_list< TypeToCreateFrom > &items)
 
template<typename Type >
void addArray (const Type *elementsToAdd, int numElementsToAdd)
 Adds elements from an array to the end of this array. More...
 
bool addIfNotAlreadyThere (ParameterType newElement)
 Appends a new element at the end of the array as long as the array doesn't already contain it. More...
 
template<typename Type >
void addNullTerminatedArray (const Type *const *elementsToAdd)
 Adds elements from a null-terminated array of pointers to the end of this array. More...
 
template<class ElementComparator >
int addSorted (ElementComparator &comparator, ParameterType newElement)
 Inserts a new element into the array, assuming that the array is sorted. More...
 
void addUsingDefaultSort (ParameterType newElement)
 Inserts a new element into the array, assuming that the array is sorted. More...
 
const ElementType * begin () const noexcept
 Returns a pointer to the first element in the array. More...
 
ElementType * begin () noexcept
 Returns a pointer to the first element in the array. More...
 
void clear ()
 Removes all elements from the array. More...
 
void clearQuick ()
 Removes all elements from the array without freeing the array's allocated storage. More...
 
bool contains (ParameterType elementToLookFor) const
 Returns true if the array contains at least one occurrence of an object. More...
 
const ElementType * data () const noexcept
 Returns a pointer to the first element in the array. More...
 
ElementType * data () noexcept
 Returns a pointer to the first element in the array. More...
 
const ElementType * end () const noexcept
 Returns a pointer to the element which follows the last element in the array. More...
 
ElementType * end () noexcept
 Returns a pointer to the element which follows the last element in the array. More...
 
void ensureStorageAllocated (int minNumElements)
 Increases the array's internal storage to hold a minimum number of elements. More...
 
void fill (const ParameterType &newValue) noexcept
 Fills the Array with the provided value. More...
 
ElementType getFirst () const noexcept
 Returns the first element in the array, or a default value if the array is empty. More...
 
ElementType getLast () const noexcept
 Returns the last element in the array, or a default value if the array is empty. More...
 
const TypeOfCriticalSectionToUsegetLock () const noexcept
 Returns the CriticalSection that locks this array. More...
 
const ElementType * getRawDataPointer () const noexcept
 Returns a pointer to the actual array data. More...
 
ElementType * getRawDataPointer () noexcept
 Returns a pointer to the actual array data. More...
 
const ElementType & getReference (int index) const noexcept
 Returns a direct reference to one of the elements in the array, without checking the index passed in. More...
 
ElementType & getReference (int index) noexcept
 Returns a direct reference to one of the elements in the array, without checking the index passed in. More...
 
ElementType getUnchecked (int index) const
 Returns one of the elements in the array, without checking the index passed in. More...
 
int indexOf (ParameterType elementToLookFor) const
 Finds the index of the first element which matches the value passed in. More...
 
template<typename ElementComparator , typename TargetValueType >
int indexOfSorted (ElementComparator &comparator, TargetValueType elementToLookFor) const
 Finds the index of an element in the array, assuming that the array is sorted. More...
 
void insert (int indexToInsertAt, ParameterType newElement)
 Inserts a new element into the array at a given position. More...
 
void insertArray (int indexToInsertAt, const ElementType *newElements, int numberOfElements)
 Inserts an array of values into this array at a given position. More...
 
void insertMultiple (int indexToInsertAt, ParameterType newElement, int numberOfTimesToInsertIt)
 Inserts multiple copies of an element into the array at a given position. More...
 
bool isEmpty () const noexcept
 Returns true if the array is empty, false otherwise. More...
 
void minimiseStorageOverheads ()
 Reduces the amount of storage being used by the array. More...
 
void move (int currentIndex, int newIndex) noexcept
 Moves one of the values to a different position. More...
 
template<class OtherArrayType >
bool operator!= (const OtherArrayType &other) const
 Compares this array to another one. More...
 
Arrayoperator= (Array &&other) noexcept
 
Arrayoperator= (const Array &other)
 Copies another array. More...
 
template<class OtherArrayType >
bool operator== (const OtherArrayType &other) const
 Compares this array to another one. More...
 
ElementType operator[] (int index) const
 Returns one of the elements in the array. More...
 
void remove (const ElementType *elementToRemove)
 Removes an element from the array. More...
 
void remove (int indexToRemove)
 Removes an element from the array. More...
 
int removeAllInstancesOf (ParameterType valueToRemove)
 Removes items from the array. More...
 
ElementType removeAndReturn (int indexToRemove)
 Removes an element from the array. More...
 
void removeFirstMatchingValue (ParameterType valueToRemove)
 Removes an item from the array. More...
 
template<typename PredicateType >
int removeIf (PredicateType &&predicate)
 Removes items from the array. More...
 
void removeLast (int howManyToRemove=1)
 Removes the last n elements from the array. More...
 
void removeRange (int startIndex, int numberToRemove)
 Removes a range of elements from the array. More...
 
template<class OtherArrayType >
void removeValuesIn (const OtherArrayType &otherArray)
 Removes any elements which are also in another array. More...
 
template<class OtherArrayType >
void removeValuesNotIn (const OtherArrayType &otherArray)
 Removes any elements which are not found in another array. More...
 
void resize (int targetNumItems)
 This will enlarge or shrink the array to the given number of elements, by adding or removing items from its end. More...
 
void set (int indexToChange, ParameterType newValue)
 Replaces an element with a new value. More...
 
void setUnchecked (int indexToChange, ParameterType newValue)
 Replaces an element with a new value without doing any bounds-checking. More...
 
int size () const noexcept
 Returns the current number of elements in the array. More...
 
void sort ()
 Sorts the array using a default comparison operation. More...
 
template<class ElementComparator >
void sort (ElementComparator &comparator, bool retainOrderOfEquivalentItems=false)
 Sorts the elements in the array. More...
 
void swap (int index1, int index2)
 Swaps over two elements in the array. More...
 
template<class OtherArrayType >
void swapWith (OtherArrayType &otherArray) noexcept
 This swaps the contents of this array with those of another array. More...
 

Private Types

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

Private Member Functions

void minimiseStorageAfterRemoval ()
 
void removeInternal (int indexToRemove)
 

Private Attributes

ArrayBase< ElementType, TypeOfCriticalSectionToUsevalues
 

Detailed Description

template<typename ElementType, typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
class juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >

Holds a resizable array of primitive or copy-by-value objects.

Examples of arrays are: Array<int>, Array<Rectangle> or Array<MyClass*>

The Array class can be used to hold simple, non-polymorphic objects as well as primitive types - to do so, the class must fulfill these requirements:

  • it must have a copy constructor and assignment operator
  • it must be able to be relocated in memory by a memcpy without this causing any problems - so objects whose functionality relies on external pointers or references to themselves can not be used.

You can of course have an array of pointers to any kind of object, e.g. Array<MyClass*>, but if you do this, the array doesn't take any ownership of the objects - see the OwnedArray class or the ReferenceCountedArray class for more powerful ways of holding lists of objects.

For holding lists of strings, you can use Array<String>, but it's usually better to use the specialised class StringArray, which provides more useful functions.

To make all the array's methods thread-safe, pass in "CriticalSection" as the templated TypeOfCriticalSectionToUse parameter, instead of the default DummyCriticalSection.

See also
OwnedArray, ReferenceCountedArray, StringArray, CriticalSection

@tags{Core}

Member Typedef Documentation

◆ ParameterType

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
using juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::ParameterType = typename TypeHelpers::ParameterType<ElementType>::type
private

◆ ScopedLockType

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
using juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::ScopedLockType = typename TypeOfCriticalSectionToUse::ScopedLockType

Returns the type of scoped lock to use for locking this array.

Constructor & Destructor Documentation

◆ Array() [1/10]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::Array ( )
default

Creates an empty array.

◆ Array() [2/10]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::Array ( const Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize > &  other)
inline

Creates a copy of another array.

Parameters
otherthe array to copy

◆ Array() [3/10]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::Array ( Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize > &&  other)
inlinenoexcept

◆ Array() [4/10]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
template<typename TypeToCreateFrom >
juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::Array ( const TypeToCreateFrom *  data)
inlineexplicit

Initialises from a null-terminated raw array of values.

Parameters
datathe data to copy from

◆ Array() [5/10]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
template<typename TypeToCreateFrom >
juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::Array ( const TypeToCreateFrom *  data,
int  numValues 
)
inline

Initialises from a raw array of values.

Parameters
datathe data to copy from
numValuesthe number of values in the array

◆ Array() [6/10]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::Array ( const ElementType &  singleElementToAdd)
inline

Initialises an Array of size 1 containing a single element.

◆ Array() [7/10]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::Array ( ElementType &&  singleElementToAdd)
inline

Initialises an Array of size 1 containing a single element.

◆ Array() [8/10]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
template<typename... OtherElements>
juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::Array ( const ElementType &  firstNewElement,
OtherElements &&...  otherElements 
)
inline

Initialises an Array from a list of items.

◆ Array() [9/10]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
template<typename... OtherElements>
juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::Array ( ElementType &&  firstNewElement,
OtherElements &&...  otherElements 
)
inline

Initialises an Array from a list of items.

◆ Array() [10/10]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
template<typename TypeToCreateFrom >
juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::Array ( const std::initializer_list< TypeToCreateFrom > &  items)
inline

◆ ~Array()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::~Array ( )
default

Destructor.

Member Function Documentation

◆ add() [1/4]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
template<typename... OtherElements>
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::add ( const ElementType &  firstNewElement,
OtherElements &&...  otherElements 
)
inline

Appends multiple new elements at the end of the array.

◆ add() [2/4]

◆ add() [3/4]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
template<typename... OtherElements>
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::add ( ElementType &&  firstNewElement,
OtherElements &&...  otherElements 
)
inline

Appends multiple new elements at the end of the array.

◆ add() [4/4]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::add ( ElementType &&  newElement)
inline

Appends a new element at the end of the array.

Parameters
newElementthe new object to add to the array
See also
set, insert, addIfNotAlreadyThere, addSorted, addUsingDefaultSort, addArray

◆ addArray() [1/4]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
template<class OtherArrayType >
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::addArray ( const OtherArrayType &  arrayToAddFrom)
inline

Adds elements from another array to the end of this array.

Parameters
arrayToAddFromthe array from which to copy the elements
See also
add

◆ addArray() [2/4]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
template<class OtherArrayType >
std::enable_if<! std::is_pointer<OtherArrayType>::value, void>::type juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::addArray ( const OtherArrayType &  arrayToAddFrom,
int  startIndex,
int  numElementsToAdd = -1 
)
inline

Adds elements from another array to the end of this array.

Parameters
arrayToAddFromthe array from which to copy the elements
startIndexthe first element of the other array to start copying from
numElementsToAddhow many elements to add from the other array. If this value is negative or greater than the number of available elements, all available elements will be copied.
See also
add

◆ addArray() [3/4]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
template<typename TypeToCreateFrom >
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::addArray ( const std::initializer_list< TypeToCreateFrom > &  items)
inline

◆ addArray() [4/4]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
template<typename Type >
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::addArray ( const Type *  elementsToAdd,
int  numElementsToAdd 
)
inline

Adds elements from an array to the end of this array.

Parameters
elementsToAddan array of some kind of object from which elements can be constructed.
numElementsToAddhow many elements are in this other array
See also
add

Referenced by juce::Array< juce::MPEInstrument::Listener * >::addNullTerminatedArray(), juce::Array< juce::MPEInstrument::Listener * >::Array(), juce::LassoComponent< SelectableItemType >::dragLasso(), juce::OwnedArray< SwatchComponent >::removeRange(), and juce::ReferenceCountedArray< juce::AudioProcessorGraph::Node >::removeRange().

◆ addIfNotAlreadyThere()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
bool juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::addIfNotAlreadyThere ( ParameterType  newElement)
inline

Appends a new element at the end of the array as long as the array doesn't already contain it.

If the array already contains an element that matches the one passed in, nothing will be done.

Parameters
newElementthe new object to add to the array
Returns
true if the element was added to the array; false otherwise.

Referenced by juce::anonymous_namespace{juce_posix_IPAddress.h}::getAllInterfaceInfo().

◆ addNullTerminatedArray()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
template<typename Type >
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::addNullTerminatedArray ( const Type *const *  elementsToAdd)
inline

Adds elements from a null-terminated array of pointers to the end of this array.

Parameters
elementsToAddan array of pointers to some kind of object from which elements can be constructed. This array must be terminated by a nullptr
See also
addArray

◆ addSorted()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
template<class ElementComparator >
int juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::addSorted ( ElementComparator &  comparator,
ParameterType  newElement 
)
inline

Inserts a new element into the array, assuming that the array is sorted.

This will use a comparator to find the position at which the new element should go. If the array isn't sorted, the behaviour of this method will be unpredictable.

Parameters
comparatorthe comparator to use to compare the elements - see the sort() method for details about the form this object should take
newElementthe new element to insert to the array
Returns
the index at which the new item was added
See also
addUsingDefaultSort, add, sort

Referenced by juce::Array< juce::MPEInstrument::Listener * >::addUsingDefaultSort().

◆ addUsingDefaultSort()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::addUsingDefaultSort ( ParameterType  newElement)
inline

Inserts a new element into the array, assuming that the array is sorted.

This will use the DefaultElementComparator class for sorting, so your ElementType must be suitable for use with that class. If the array isn't sorted, the behaviour of this method will be unpredictable.

Parameters
newElementthe new element to insert to the array
See also
addSorted, sort

◆ begin() [1/2]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
const ElementType* juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::begin ( ) const
inlinenoexcept

Returns a pointer to the first element in the array.

This method is provided for compatibility with standard C++ iteration mechanisms.

◆ begin() [2/2]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
ElementType* juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::begin ( )
inlinenoexcept

◆ clear()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::clear ( )
inline

Removes all elements from the array.

This will remove all the elements, and free any storage that the array is using. To clear the array without freeing the storage, use the clearQuick() method instead.

See also
clearQuick

Referenced by juce::LassoComponent< SelectableItemType >::endLasso(), CameraDevice::Pimpl::getVideoSizes(), juce::Array< juce::MPEInstrument::Listener * >::removeValuesIn(), and juce::Array< juce::MPEInstrument::Listener * >::removeValuesNotIn().

◆ clearQuick()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::clearQuick ( )
inline

Removes all elements from the array without freeing the array's allocated storage.

See also
clear

Referenced by juce::Array< juce::MPEInstrument::Listener * >::clear().

◆ contains()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
bool juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::contains ( ParameterType  elementToLookFor) const
inline

Returns true if the array contains at least one occurrence of an object.

Parameters
elementToLookForthe value or object to look for
Returns
true if the item is found

Referenced by juce::Array< juce::MPEInstrument::Listener * >::addIfNotAlreadyThere(), and juce::SelectedItemSet< SelectableItemType >::isSelected().

◆ data() [1/2]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
const ElementType* juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::data ( ) const
inlinenoexcept

Returns a pointer to the first element in the array.

This method is provided for compatibility with the standard C++ containers.

◆ data() [2/2]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
ElementType* juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::data ( )
inlinenoexcept

Returns a pointer to the first element in the array.

This method is provided for compatibility with the standard C++ containers.

Referenced by juce::Array< juce::MPEInstrument::Listener * >::Array().

◆ end() [1/2]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
const ElementType* juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::end ( ) const
inlinenoexcept

Returns a pointer to the element which follows the last element in the array.

This method is provided for compatibility with standard C++ iteration mechanisms.

◆ end() [2/2]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
ElementType* juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::end ( )
inlinenoexcept

Returns a pointer to the element which follows the last element in the array.

This method is provided for compatibility with standard C++ iteration mechanisms.

Referenced by juce::dsp::Matrix< ElementType >::end(), and juce::SelectedItemSet< SelectableItemType >::end().

◆ ensureStorageAllocated()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::ensureStorageAllocated ( int  minNumElements)
inline

Increases the array's internal storage to hold a minimum number of elements.

Calling this before adding a large known number of elements means that the array won't have to keep dynamically resizing itself as the elements are added, and it'll therefore be more efficient.

◆ fill()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::fill ( const ParameterType newValue)
inlinenoexcept

Fills the Array with the provided value.

◆ getFirst()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
ElementType juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::getFirst ( ) const
inlinenoexcept

Returns the first element in the array, or a default value if the array is empty.

See also
operator[], getUnchecked, getLast

◆ getLast()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
ElementType juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::getLast ( ) const
inlinenoexcept

Returns the last element in the array, or a default value if the array is empty.

See also
operator[], getUnchecked, getFirst

◆ getLock()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
const TypeOfCriticalSectionToUse& juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::getLock ( ) const
inlinenoexcept

Returns the CriticalSection that locks this array.

To lock, you can call getLock().enter() and getLock().exit(), or preferably use an object of ScopedLockType as an RAII lock for it.

Referenced by juce::Array< juce::MPEInstrument::Listener * >::add(), juce::Array< juce::MPEInstrument::Listener * >::addArray(), juce::Array< juce::MPEInstrument::Listener * >::addIfNotAlreadyThere(), juce::Array< juce::MPEInstrument::Listener * >::addSorted(), juce::Array< juce::MPEInstrument::Listener * >::Array(), juce::Array< juce::MPEInstrument::Listener * >::clear(), juce::Array< juce::MPEInstrument::Listener * >::clearQuick(), juce::Array< juce::MPEInstrument::Listener * >::contains(), juce::Array< juce::MPEInstrument::Listener * >::ensureStorageAllocated(), juce::Array< juce::MPEInstrument::Listener * >::fill(), juce::Array< juce::MPEInstrument::Listener * >::getFirst(), juce::Array< juce::MPEInstrument::Listener * >::getLast(), juce::Array< juce::MPEInstrument::Listener * >::getReference(), juce::Array< juce::MPEInstrument::Listener * >::getUnchecked(), juce::Array< juce::MPEInstrument::Listener * >::indexOf(), juce::Array< juce::MPEInstrument::Listener * >::indexOfSorted(), juce::Array< juce::MPEInstrument::Listener * >::insert(), juce::Array< juce::MPEInstrument::Listener * >::insertArray(), juce::Array< juce::MPEInstrument::Listener * >::insertMultiple(), juce::Array< juce::MPEInstrument::Listener * >::minimiseStorageOverheads(), juce::Array< juce::MPEInstrument::Listener * >::move(), juce::Array< juce::MPEInstrument::Listener * >::operator=(), juce::Array< juce::MPEInstrument::Listener * >::operator==(), juce::Array< juce::MPEInstrument::Listener * >::operator[](), juce::Array< juce::MPEInstrument::Listener * >::remove(), juce::Array< juce::MPEInstrument::Listener * >::removeAllInstancesOf(), juce::Array< juce::MPEInstrument::Listener * >::removeAndReturn(), juce::Array< juce::MPEInstrument::Listener * >::removeFirstMatchingValue(), juce::Array< juce::MPEInstrument::Listener * >::removeIf(), juce::Array< juce::MPEInstrument::Listener * >::removeLast(), juce::Array< juce::MPEInstrument::Listener * >::removeRange(), juce::Array< juce::MPEInstrument::Listener * >::removeValuesIn(), juce::Array< juce::MPEInstrument::Listener * >::removeValuesNotIn(), juce::Array< juce::MPEInstrument::Listener * >::set(), juce::Array< juce::MPEInstrument::Listener * >::setUnchecked(), juce::Array< juce::MPEInstrument::Listener * >::size(), juce::Array< juce::MPEInstrument::Listener * >::sort(), juce::Array< juce::MPEInstrument::Listener * >::swap(), and juce::Array< juce::MPEInstrument::Listener * >::swapWith().

◆ getRawDataPointer() [1/2]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
const ElementType* juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::getRawDataPointer ( ) const
inlinenoexcept

Returns a pointer to the actual array data.

This pointer will only be valid until the next time a non-const method is called on the array.

◆ getRawDataPointer() [2/2]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
ElementType* juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::getRawDataPointer ( )
inlinenoexcept

◆ getReference() [1/2]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
const ElementType& juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::getReference ( int  index) const
inlinenoexcept

Returns a direct reference to one of the elements in the array, without checking the index passed in.

This is like getUnchecked, but returns a direct reference to the element. Obviously this can be dangerous, so only use it when absolutely necessary.

Parameters
indexthe index of the element being requested (0 is the first element in the array)
See also
operator[], getFirst, getLast

◆ getReference() [2/2]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
ElementType& juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::getReference ( int  index)
inlinenoexcept

Returns a direct reference to one of the elements in the array, without checking the index passed in.

This is like getUnchecked, but returns a direct reference to the element, so that you can alter it directly. Obviously this can be dangerous, so only use it when absolutely necessary.

Parameters
indexthe index of the element being requested (0 is the first element in the array)
See also
operator[], getFirst, getLast

Referenced by juce::dsp::Matrix< ElementType >::begin(), juce::dsp::Matrix< ElementType >::operator()(), juce::SelectedItemSet< SelectableItemType >::operator=(), and juce::dsp::Polynomial< FloatingType >::operator[]().

◆ getUnchecked()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
ElementType juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::getUnchecked ( int  index) const
inline

Returns one of the elements in the array, without checking the index passed in.

Unlike the operator[] method, this will try to return an element without checking that the index is within the bounds of the array, so should only be used when you're confident that it will always be a valid index.

Parameters
indexthe index of the element being requested (0 is the first element in the array)
See also
operator[], getFirst, getLast

Referenced by juce::dsp::LookupTable< NumericType >::getUnchecked(), CameraDevice::Pimpl::getVideoSizes(), juce::dsp::Polynomial< FloatingType >::operator()(), juce::dsp::Polynomial< FloatingType >::operator[](), juce::HashMap< KeyType, ValueType, HashFunctionType, TypeOfCriticalSectionToUse >::remapTable(), and juce::SelectedItemSet< SelectableItemType >::selectOnly().

◆ indexOf()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
int juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::indexOf ( ParameterType  elementToLookFor) const
inline

Finds the index of the first element which matches the value passed in.

This will search the array for the given object, and return the index of its first occurrence. If the object isn't found, the method will return -1.

Parameters
elementToLookForthe value or object to look for
Returns
the index of the object, or -1 if it's not found

Referenced by juce::SelectedItemSet< SelectableItemType >::deselect().

◆ indexOfSorted()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
template<typename ElementComparator , typename TargetValueType >
int juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::indexOfSorted ( ElementComparator &  comparator,
TargetValueType  elementToLookFor 
) const
inline

Finds the index of an element in the array, assuming that the array is sorted.

This will use a comparator to do a binary-chop to find the index of the given element, if it exists. If the array isn't sorted, the behaviour of this method will be unpredictable.

Parameters
comparatorthe comparator to use to compare the elements - see the sort() method for details about the form this object should take
elementToLookForthe element to search for
Returns
the index of the element, or -1 if it's not found
See also
addSorted, sort

◆ insert()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::insert ( int  indexToInsertAt,
ParameterType  newElement 
)
inline

Inserts a new element into the array at a given position.

If the index is less than 0 or greater than the size of the array, the element will be added to the end of the array. Otherwise, it will be inserted into the array, moving all the later elements along to make room.

Parameters
indexToInsertAtthe index at which the new element should be inserted (pass in -1 to add it to the end)
newElementthe new object to add to the array
See also
add, addSorted, addUsingDefaultSort, set

Referenced by juce::Array< juce::MPEInstrument::Listener * >::addSorted().

◆ insertArray()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::insertArray ( int  indexToInsertAt,
const ElementType *  newElements,
int  numberOfElements 
)
inline

Inserts an array of values into this array at a given position.

If the index is less than 0 or greater than the size of the array, the new elements will be added to the end of the array. Otherwise, they will be inserted into the array, moving all the later elements along to make room.

Parameters
indexToInsertAtthe index at which the first new element should be inserted
newElementsthe new values to add to the array
numberOfElementshow many items are in the array
See also
insert, add, addSorted, set

◆ insertMultiple()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::insertMultiple ( int  indexToInsertAt,
ParameterType  newElement,
int  numberOfTimesToInsertIt 
)
inline

Inserts multiple copies of an element into the array at a given position.

If the index is less than 0 or greater than the size of the array, the element will be added to the end of the array. Otherwise, it will be inserted into the array, moving all the later elements along to make room.

Parameters
indexToInsertAtthe index at which the new element should be inserted
newElementthe new object to add to the array
numberOfTimesToInsertIthow many copies of the value to insert
See also
insert, add, addSorted, set

Referenced by juce::HashMap< KeyType, ValueType, HashFunctionType, TypeOfCriticalSectionToUse >::remapTable(), and juce::Array< juce::MPEInstrument::Listener * >::resize().

◆ isEmpty()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
bool juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::isEmpty ( ) const
inlinenoexcept

◆ minimiseStorageAfterRemoval()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::minimiseStorageAfterRemoval ( )
inlineprivate

◆ minimiseStorageOverheads()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::minimiseStorageOverheads ( )
inline

Reduces the amount of storage being used by the array.

Arrays typically allocate slightly more storage than they need, and after removing elements, they may have quite a lot of unused space allocated. This method will reduce the amount of allocated storage to a minimum.

◆ move()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::move ( int  currentIndex,
int  newIndex 
)
inlinenoexcept

Moves one of the values to a different position.

This will move the value to a specified index, shuffling along any intervening elements as required.

So for example, if you have the array { 0, 1, 2, 3, 4, 5 } then calling move (2, 4) would result in { 0, 1, 3, 4, 2, 5 }.

Parameters
currentIndexthe index of the value to be moved. If this isn't a valid index, then nothing will be done
newIndexthe index at which you'd like this value to end up. If this is less than zero, the value will be moved to the end of the array

◆ operator!=()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
template<class OtherArrayType >
bool juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::operator!= ( const OtherArrayType &  other) const
inline

Compares this array to another one.

Two arrays are considered equal if they both contain the same set of elements, in the same order.

Parameters
otherthe other array to compare with

◆ operator=() [1/2]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
Array& juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::operator= ( Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize > &&  other)
inlinenoexcept

◆ operator=() [2/2]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
Array& juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::operator= ( const Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize > &  other)
inline

Copies another array.

Parameters
otherthe array to copy

◆ operator==()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
template<class OtherArrayType >
bool juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::operator== ( const OtherArrayType &  other) const
inline

Compares this array to another one.

Two arrays are considered equal if they both contain the same set of elements, in the same order.

Parameters
otherthe other array to compare with

Referenced by juce::Array< juce::MPEInstrument::Listener * >::operator!=().

◆ operator[]()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
ElementType juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::operator[] ( int  index) const
inline

Returns one of the elements in the array.

If the index passed in is beyond the range of valid elements, this will return a default value.

If you're certain that the index will always be a valid element, you can call getUnchecked() instead, which is faster.

Parameters
indexthe index of the element being requested (0 is the first element in the array)
See also
getUnchecked, getFirst, getLast

◆ remove() [1/2]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::remove ( const ElementType *  elementToRemove)
inline

Removes an element from the array.

This will remove the element pointed to by the given iterator, and move back all the subsequent elements to close the gap. If the iterator passed in does not point to an element within the array, behaviour is undefined.

Parameters
elementToRemovea pointer to the element to remove
See also
removeFirstMatchingValue, removeAllInstancesOf, removeRange, removeIf

◆ remove() [2/2]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::remove ( int  indexToRemove)
inline

Removes an element from the array.

This will remove the element at a given index, and move back all the subsequent elements to close the gap. If the index passed in is out-of-range, nothing will happen.

Parameters
indexToRemovethe index of the element to remove
See also
removeAndReturn, removeFirstMatchingValue, removeAllInstancesOf, removeRange

◆ removeAllInstancesOf()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
int juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::removeAllInstancesOf ( ParameterType  valueToRemove)
inline

Removes items from the array.

This will remove all occurrences of the given element from the array. If no such items are found, no action is taken.

Parameters
valueToRemovethe object to try to remove
Returns
how many objects were removed.
See also
remove, removeRange, removeIf

◆ removeAndReturn()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
ElementType juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::removeAndReturn ( int  indexToRemove)
inline

Removes an element from the array.

This will remove the element at a given index, and move back all the subsequent elements to close the gap. If the index passed in is out-of-range, nothing will happen.

Parameters
indexToRemovethe index of the element to remove
Returns
the element that has been removed
See also
removeFirstMatchingValue, removeAllInstancesOf, removeRange

Referenced by juce::SelectedItemSet< SelectableItemType >::deselect(), juce::SelectedItemSet< SelectableItemType >::deselectAll(), and juce::SelectedItemSet< SelectableItemType >::operator=().

◆ removeFirstMatchingValue()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::removeFirstMatchingValue ( ParameterType  valueToRemove)
inline

Removes an item from the array.

This will remove the first occurrence of the given element from the array. If the item isn't found, no action is taken.

Parameters
valueToRemovethe object to try to remove
See also
remove, removeRange, removeIf

◆ removeIf()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
template<typename PredicateType >
int juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::removeIf ( PredicateType &&  predicate)
inline

Removes items from the array.

This will remove all objects from the array that match a condition. If no such items are found, no action is taken.

Parameters
predicatethe condition when to remove an item. Must be a callable type that takes an ElementType and returns a bool
Returns
how many objects were removed.
See also
remove, removeRange, removeAllInstancesOf

◆ removeInternal()

◆ removeLast()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::removeLast ( int  howManyToRemove = 1)
inline

Removes the last n elements from the array.

Parameters
howManyToRemovehow many elements to remove from the end of the array
See also
remove, removeFirstMatchingValue, removeAllInstancesOf, removeRange

◆ removeRange()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::removeRange ( int  startIndex,
int  numberToRemove 
)
inline

Removes a range of elements from the array.

This will remove a set of elements, starting from the given index, and move subsequent elements down to close the gap.

If the range extends beyond the bounds of the array, it will be safely clipped to the size of the array.

Parameters
startIndexthe index of the first element to remove
numberToRemovehow many elements should be removed
See also
remove, removeFirstMatchingValue, removeAllInstancesOf, removeIf

Referenced by juce::Array< juce::MPEInstrument::Listener * >::resize().

◆ removeValuesIn()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
template<class OtherArrayType >
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::removeValuesIn ( const OtherArrayType &  otherArray)
inline

Removes any elements which are also in another array.

Parameters
otherArraythe other array in which to look for elements to remove
See also
removeValuesNotIn, remove, removeFirstMatchingValue, removeAllInstancesOf, removeRange

Referenced by juce::LassoComponent< SelectableItemType >::dragLasso().

◆ removeValuesNotIn()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
template<class OtherArrayType >
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::removeValuesNotIn ( const OtherArrayType &  otherArray)
inline

Removes any elements which are not found in another array.

Only elements which occur in this other array will be retained.

Parameters
otherArraythe array in which to look for elements NOT to remove
See also
removeValuesIn, remove, removeFirstMatchingValue, removeAllInstancesOf, removeRange

◆ resize()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::resize ( int  targetNumItems)
inline

This will enlarge or shrink the array to the given number of elements, by adding or removing items from its end.

If the array is smaller than the given target size, empty elements will be appended until its size is as specified. If its size is larger than the target, items will be removed from its end to shorten it.

Referenced by juce::dsp::FIR::Coefficients< NumericType >::Coefficients(), juce::dsp::Oscillator< SampleType >::prepare(), and juce::dsp::Matrix< ElementType >::resize().

◆ set()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::set ( int  indexToChange,
ParameterType  newValue 
)
inline

Replaces an element with a new value.

If the index is less than zero, this method does nothing. If the index is beyond the end of the array, the item is added to the end of the array.

Parameters
indexToChangethe index whose value you want to change
newValuethe new value to set for this index.
See also
add, insert

Referenced by juce::HashMap< KeyType, ValueType, HashFunctionType, TypeOfCriticalSectionToUse >::remapTable().

◆ setUnchecked()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::setUnchecked ( int  indexToChange,
ParameterType  newValue 
)
inline

Replaces an element with a new value without doing any bounds-checking.

This just sets a value directly in the array's internal storage, so you'd better make sure it's in range!

Parameters
indexToChangethe index whose value you want to change
newValuethe new value to set for this index.
See also
set, getUnchecked

Referenced by juce::dsp::Matrix< ElementType >::resize().

◆ size()

◆ sort() [1/2]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::sort ( )
inline

Sorts the array using a default comparison operation.

If the type of your elements isn't supported by the DefaultElementComparator class then you may need to use the other version of sort, which takes a custom comparator.

Referenced by juce::Array< juce::MPEInstrument::Listener * >::sort().

◆ sort() [2/2]

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
template<class ElementComparator >
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::sort ( ElementComparator &  comparator,
bool  retainOrderOfEquivalentItems = false 
)
inline

Sorts the elements in the array.

This will use a comparator object to sort the elements into order. The object passed must have a method of the form:

int compareElements (ElementType first, ElementType second);

..and this method must return:

  • a value of < 0 if the first comes before the second
  • a value of 0 if the two objects are equivalent
  • a value of > 0 if the second comes before the first

To improve performance, the compareElements() method can be declared as static or const.

Parameters
comparatorthe comparator to use for comparing elements.
retainOrderOfEquivalentItemsif this is true, then items which the comparator says are equivalent will be kept in the order in which they currently appear in the array. This is slower to perform, but may be important in some cases. If it's false, a faster algorithm is used, but equivalent elements may be rearranged.
See also
addSorted, indexOfSorted, sortArray

◆ swap()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::swap ( int  index1,
int  index2 
)
inline

Swaps over two elements in the array.

This swaps over the elements found at the two indexes passed in. If either index is out-of-range, this method will do nothing.

Parameters
index1index of one of the elements to swap
index2index of the other element to swap

◆ swapWith()

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
template<class OtherArrayType >
void juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::swapWith ( OtherArrayType &  otherArray)
inlinenoexcept

This swaps the contents of this array with those of another array.

If you need to exchange two arrays, this is vastly quicker than using copy-by-value because it just swaps their internal pointers.

Referenced by juce::Array< juce::MPEInstrument::Listener * >::operator=().

Member Data Documentation

◆ values

template<typename ElementType , typename TypeOfCriticalSectionToUse = DummyCriticalSection, int minimumAllocatedSize = 0>
ArrayBase<ElementType, TypeOfCriticalSectionToUse> juce::Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::values
private

Referenced by juce::Array< juce::MPEInstrument::Listener * >::add(), juce::Array< juce::MPEInstrument::Listener * >::addArray(), juce::Array< juce::MPEInstrument::Listener * >::addSorted(), juce::Array< juce::MPEInstrument::Listener * >::Array(), juce::Array< juce::MPEInstrument::Listener * >::begin(), juce::Array< juce::MPEInstrument::Listener * >::clear(), juce::Array< juce::MPEInstrument::Listener * >::clearQuick(), juce::Array< juce::MPEInstrument::Listener * >::contains(), juce::Array< juce::MPEInstrument::Listener * >::end(), juce::Array< juce::MPEInstrument::Listener * >::ensureStorageAllocated(), juce::Array< juce::MPEInstrument::Listener * >::getFirst(), juce::Array< juce::MPEInstrument::Listener * >::getLast(), juce::Array< juce::MPEInstrument::Listener * >::getLock(), juce::Array< juce::MPEInstrument::Listener * >::getRawDataPointer(), juce::Array< juce::MPEInstrument::Listener * >::getReference(), juce::Array< juce::MPEInstrument::Listener * >::getUnchecked(), juce::Array< juce::MPEInstrument::Listener * >::indexOf(), juce::Array< juce::MPEInstrument::Listener * >::indexOfSorted(), juce::Array< juce::MPEInstrument::Listener * >::insert(), juce::Array< juce::MPEInstrument::Listener * >::insertArray(), juce::Array< juce::MPEInstrument::Listener * >::insertMultiple(), juce::Array< juce::MPEInstrument::Listener * >::minimiseStorageAfterRemoval(), juce::Array< juce::MPEInstrument::Listener * >::minimiseStorageOverheads(), juce::Array< juce::MPEInstrument::Listener * >::move(), juce::Array< juce::MPEInstrument::Listener * >::operator=(), juce::Array< juce::MPEInstrument::Listener * >::operator==(), juce::Array< juce::MPEInstrument::Listener * >::operator[](), juce::Array< juce::MPEInstrument::Listener * >::remove(), juce::Array< juce::MPEInstrument::Listener * >::removeAllInstancesOf(), juce::Array< juce::MPEInstrument::Listener * >::removeAndReturn(), juce::Array< juce::MPEInstrument::Listener * >::removeFirstMatchingValue(), juce::Array< juce::MPEInstrument::Listener * >::removeIf(), juce::Array< juce::MPEInstrument::Listener * >::removeInternal(), juce::Array< juce::MPEInstrument::Listener * >::removeLast(), juce::Array< juce::MPEInstrument::Listener * >::removeRange(), juce::Array< juce::MPEInstrument::Listener * >::removeValuesIn(), juce::Array< juce::MPEInstrument::Listener * >::removeValuesNotIn(), juce::Array< juce::MPEInstrument::Listener * >::resize(), juce::Array< juce::MPEInstrument::Listener * >::set(), juce::Array< juce::MPEInstrument::Listener * >::setUnchecked(), juce::Array< juce::MPEInstrument::Listener * >::size(), juce::Array< juce::MPEInstrument::Listener * >::sort(), juce::Array< juce::MPEInstrument::Listener * >::swap(), and juce::Array< juce::MPEInstrument::Listener * >::swapWith().


The documentation for this class was generated from the following file:
juce::gl::first
GLint first
Definition: juce_gl.h:1056