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

An array designed for holding objects. More...

#include <juce_OwnedArray.h>

Inheritance diagram for juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >:
Collaboration diagram for juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >:

Public Types

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

Public Member Functions

 OwnedArray ()=default
 Creates an empty array. More...
 
 OwnedArray (const std::initializer_list< ObjectClass * > &items)
 Creates an array from a list of objects. More...
 
 OwnedArray (OwnedArray &&other) noexcept
 Move constructor. More...
 
template<class OtherObjectClass , class OtherCriticalSection >
 OwnedArray (OwnedArray< OtherObjectClass, OtherCriticalSection > &&other) noexcept
 Converting move constructor. More...
 
 ~OwnedArray ()
 Deletes the array and also deletes any objects inside it. More...
 
ObjectClass * add (ObjectClass *newObject)
 Appends a new object to the end of the array. More...
 
ObjectClass * add (std::unique_ptr< ObjectClass > newObject)
 Appends a new object to the end of the array. More...
 
template<class OtherArrayType >
void addArray (const OtherArrayType &arrayToAddFrom, int startIndex=0, int numElementsToAdd=-1)
 Adds elements from another array to the end of this array. More...
 
template<typename OtherArrayType >
void addArray (const std::initializer_list< OtherArrayType > &items)
 Adds elements from another array to the end of this array. More...
 
template<class OtherArrayType >
void addCopiesOf (const OtherArrayType &arrayToAddFrom, int startIndex=0, int numElementsToAdd=-1)
 Adds copies of the elements in another array to the end of this array. More...
 
template<class ElementComparator >
int addSorted (ElementComparator &comparator, ObjectClass *newObject) noexcept
 Inserts a new object into the array assuming that the array is sorted. More...
 
ObjectClass *const * begin () const noexcept
 Returns a pointer to the first element in the array. More...
 
ObjectClass ** begin () noexcept
 Returns a pointer to the first element in the array. More...
 
void clear (bool deleteObjects=true)
 Clears the array, optionally deleting the objects inside it first. More...
 
void clearQuick (bool deleteObjects)
 Clears the array, optionally deleting the objects inside it first. More...
 
bool contains (const ObjectClass *objectToLookFor) const noexcept
 Returns true if the array contains a specified object. More...
 
ObjectClass *const * data () const noexcept
 Returns a pointer to the first element in the array. More...
 
ObjectClass ** data () noexcept
 Returns a pointer to the first element in the array. More...
 
ObjectClass *const * end () const noexcept
 Returns a pointer to the element which follows the last element in the array. More...
 
ObjectClass ** end () noexcept
 Returns a pointer to the element which follows the last element in the array. More...
 
void ensureStorageAllocated (int minNumElements) noexcept
 Increases the array's internal storage to hold a minimum number of elements. More...
 
ObjectClass * getFirst () const noexcept
 Returns a pointer to the first object in the array. More...
 
ObjectClass * getLast () const noexcept
 Returns a pointer to the last object in the array. More...
 
const TypeOfCriticalSectionToUsegetLock () const noexcept
 Returns the CriticalSection that locks this array. More...
 
ObjectClass ** getRawDataPointer () noexcept
 Returns a pointer to the actual array data. More...
 
ObjectClass * getUnchecked (int index) const noexcept
 Returns a pointer to the object at this index in the array, without checking whether the index is in-range. More...
 
int indexOf (const ObjectClass *objectToLookFor) const noexcept
 Finds the index of an object which might be in the array. More...
 
template<typename ElementComparator >
int indexOfSorted (ElementComparator &comparator, const ObjectClass *objectToLookFor) const noexcept
 Finds the index of an object in the array, assuming that the array is sorted. More...
 
ObjectClass * insert (int indexToInsertAt, ObjectClass *newObject)
 Inserts a new object into the array at the given index. More...
 
ObjectClass * insert (int indexToInsertAt, std::unique_ptr< ObjectClass > newObject)
 Inserts a new object into the array at the given index. More...
 
void insertArray (int indexToInsertAt, ObjectClass *const *newObjects, int numberOfElements)
 Inserts an array of values into this array at a given position. More...
 
bool isEmpty () const noexcept
 Returns true if the array is empty, false otherwise. More...
 
void minimiseStorageOverheads () noexcept
 Reduces the amount of storage being used by the array. More...
 
void move (int currentIndex, int newIndex) noexcept
 Moves one of the objects to a different position. More...
 
OwnedArrayoperator= (OwnedArray &&other) noexcept
 Move assignment operator. More...
 
template<class OtherObjectClass , class OtherCriticalSection >
OwnedArrayoperator= (OwnedArray< OtherObjectClass, OtherCriticalSection > &&other) noexcept
 Converting move assignment operator. More...
 
ObjectClass * operator[] (int index) const noexcept
 Returns a pointer to the object at this index in the array. More...
 
void remove (int indexToRemove, bool deleteObject=true)
 Removes an object from the array. More...
 
ObjectClass * removeAndReturn (int indexToRemove)
 Removes and returns an object from the array without deleting it. More...
 
void removeLast (int howManyToRemove=1, bool deleteObjects=true)
 Removes the last n objects from the array. More...
 
void removeObject (const ObjectClass *objectToRemove, bool deleteObject=true)
 Removes a specified object from the array. More...
 
void removeRange (int startIndex, int numberToRemove, bool deleteObjects=true)
 Removes a range of objects from the array. More...
 
ObjectClass * set (int indexToChange, ObjectClass *newObject, bool deleteOldElement=true)
 Replaces an object in the array with a different one. More...
 
ObjectClass * set (int indexToChange, std::unique_ptr< ObjectClass > newObject, bool deleteOldElement=true)
 Replaces an object in the array with a different one. More...
 
int size () const noexcept
 Returns the number of items currently in the array. More...
 
template<class ElementComparator >
void sort (ElementComparator &comparator, bool retainOrderOfEquivalentItems=false) noexcept
 Sorts the elements in the array. More...
 
void swap (int index1, int index2) noexcept
 Swaps a pair of objects 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 Member Functions

void deleteAllObjects ()
 

Private Attributes

ArrayBase< ObjectClass *, TypeOfCriticalSectionToUsevalues
 

Friends

template<class OtherObjectClass , class OtherCriticalSection >
class OwnedArray
 

Detailed Description

template<class ObjectClass, class TypeOfCriticalSectionToUse = DummyCriticalSection>
class juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >

An array designed for holding objects.

This holds a list of pointers to objects, and will automatically delete the objects when they are removed from the array, or when the array is itself deleted.

Declare it in the form: OwnedArray<MyObjectClass>

..and then add new objects, e.g. myOwnedArray.add (new MyObjectClass());

After adding objects, they are 'owned' by the array and will be deleted when removed or replaced.

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

See also
Array, ReferenceCountedArray, StringArray, CriticalSection

@tags{Core}

Member Typedef Documentation

◆ ScopedLockType

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
using juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::ScopedLockType = typename TypeOfCriticalSectionToUse::ScopedLockType

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

Constructor & Destructor Documentation

◆ OwnedArray() [1/4]

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::OwnedArray ( )
default

Creates an empty array.

◆ ~OwnedArray()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::~OwnedArray ( )
inline

Deletes the array and also deletes any objects inside it.

To get rid of the array without deleting its objects, use its clear (false) method before deleting it.

◆ OwnedArray() [2/4]

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::OwnedArray ( OwnedArray< ObjectClass, TypeOfCriticalSectionToUse > &&  other)
inlinenoexcept

Move constructor.

◆ OwnedArray() [3/4]

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::OwnedArray ( const std::initializer_list< ObjectClass * > &  items)
inline

Creates an array from a list of objects.

◆ OwnedArray() [4/4]

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
template<class OtherObjectClass , class OtherCriticalSection >
juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::OwnedArray ( OwnedArray< OtherObjectClass, OtherCriticalSection > &&  other)
inlinenoexcept

Converting move constructor.

Member Function Documentation

◆ add() [1/2]

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
ObjectClass* juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::add ( ObjectClass *  newObject)
inline

Appends a new object to the end of the array.

Note that this object will be deleted by the OwnedArray when it is removed, so be careful not to delete it somewhere else.

Also be careful not to add the same object to the array more than once, as this will obviously cause deletion of dangling pointers.

Parameters
newObjectthe new object to add to the array
Returns
the new object that was added
See also
set, insert, addSorted

Referenced by juce::OwnedArray< SwatchComponent >::add(), and juce::dsp::ProcessorDuplicator< MonoProcessorType, StateType >::prepare().

◆ add() [2/2]

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
ObjectClass* juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::add ( std::unique_ptr< ObjectClass >  newObject)
inline

Appends a new object to the end of the array.

Note that this object will be deleted by the OwnedArray when it is removed, so be careful not to delete it somewhere else.

Also be careful not to add the same object to the array more than once, as this will obviously cause deletion of dangling pointers.

Parameters
newObjectthe new object to add to the array
Returns
the new object that was added
See also
set, insert, addSorted

◆ addArray() [1/2]

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
template<class OtherArrayType >
void juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::addArray ( const OtherArrayType &  arrayToAddFrom,
int  startIndex = 0,
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

Referenced by juce::OwnedArray< SwatchComponent >::OwnedArray().

◆ addArray() [2/2]

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
template<typename OtherArrayType >
void juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::addArray ( const std::initializer_list< OtherArrayType > &  items)
inline

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

◆ addCopiesOf()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
template<class OtherArrayType >
void juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::addCopiesOf ( const OtherArrayType &  arrayToAddFrom,
int  startIndex = 0,
int  numElementsToAdd = -1 
)
inline

Adds copies of the elements in another array to the end of this array.

The other array must be either an OwnedArray of a compatible type of object, or an Array containing pointers to the same kind of object. The objects involved must provide a copy constructor, and this will be used to create new copies of each element, and add them to 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

◆ addSorted()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
template<class ElementComparator >
int juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::addSorted ( ElementComparator &  comparator,
ObjectClass *  newObject 
)
inlinenoexcept

Inserts a new object into the array assuming that the array is sorted.

This will use a comparator to find the position at which the new object 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 this object's structure
newObjectthe new object to insert to the array
Returns
the index at which the new object was added
See also
add, sort, indexOfSorted

◆ begin() [1/2]

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
ObjectClass* const* juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::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<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
ObjectClass** juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::begin ( )
inlinenoexcept

Returns a pointer to the first element in the array.

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

Referenced by juce::OwnedArray< SwatchComponent >::data().

◆ clear()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
void juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::clear ( bool  deleteObjects = true)
inline

Clears the array, optionally deleting the objects inside it first.

Referenced by juce::OwnedArray< SwatchComponent >::removeLast().

◆ clearQuick()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
void juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::clearQuick ( bool  deleteObjects)
inline

Clears the array, optionally deleting the objects inside it first.

Referenced by juce::OwnedArray< SwatchComponent >::clear().

◆ contains()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
bool juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::contains ( const ObjectClass *  objectToLookFor) const
inlinenoexcept

Returns true if the array contains a specified object.

Parameters
objectToLookForthe object to look for
Returns
true if the object is in the array

◆ data() [1/2]

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
ObjectClass* const* juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::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<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
ObjectClass** juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::data ( )
inlinenoexcept

Returns a pointer to the first element in the array.

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

◆ deleteAllObjects()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
void juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::deleteAllObjects ( )
inlineprivate

◆ end() [1/2]

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
ObjectClass* const* juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::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<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
ObjectClass** juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::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.

◆ ensureStorageAllocated()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
void juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::ensureStorageAllocated ( int  minNumElements)
inlinenoexcept

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.

◆ getFirst()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
ObjectClass* juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::getFirst ( ) const
inlinenoexcept

Returns a pointer to the first object in the array.

This will return a null pointer if the array's empty.

See also
getLast

◆ getLast()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
ObjectClass* juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::getLast ( ) const
inlinenoexcept

Returns a pointer to the last object in the array.

This will return a null pointer if the array's empty.

See also
getFirst

◆ getLock()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
const TypeOfCriticalSectionToUse& juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::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::OwnedArray< SwatchComponent >::add(), juce::OwnedArray< SwatchComponent >::addArray(), juce::OwnedArray< SwatchComponent >::addCopiesOf(), juce::OwnedArray< SwatchComponent >::addSorted(), juce::OwnedArray< SwatchComponent >::clear(), juce::OwnedArray< SwatchComponent >::clearQuick(), juce::OwnedArray< SwatchComponent >::contains(), juce::OwnedArray< SwatchComponent >::ensureStorageAllocated(), juce::OwnedArray< SwatchComponent >::getFirst(), juce::OwnedArray< SwatchComponent >::getLast(), juce::OwnedArray< SwatchComponent >::getUnchecked(), juce::OwnedArray< SwatchComponent >::indexOf(), juce::OwnedArray< SwatchComponent >::indexOfSorted(), juce::OwnedArray< SwatchComponent >::insert(), juce::OwnedArray< SwatchComponent >::insertArray(), juce::OwnedArray< SwatchComponent >::minimiseStorageOverheads(), juce::OwnedArray< SwatchComponent >::move(), juce::OwnedArray< SwatchComponent >::operator=(), juce::OwnedArray< SwatchComponent >::operator[](), juce::OwnedArray< SwatchComponent >::remove(), juce::OwnedArray< SwatchComponent >::removeAndReturn(), juce::OwnedArray< SwatchComponent >::removeLast(), juce::OwnedArray< SwatchComponent >::removeObject(), juce::OwnedArray< SwatchComponent >::removeRange(), juce::OwnedArray< SwatchComponent >::set(), juce::OwnedArray< SwatchComponent >::sort(), juce::OwnedArray< SwatchComponent >::swap(), and juce::OwnedArray< SwatchComponent >::swapWith().

◆ getRawDataPointer()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
ObjectClass** juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::getRawDataPointer ( )
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.

◆ getUnchecked()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
ObjectClass* juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::getUnchecked ( int  index) const
inlinenoexcept

Returns a pointer to the object at this index in the array, without checking whether the index is in-range.

This is a faster and less safe version of operator[] which doesn't check the index passed in, so it can be used when you're sure the index is always going to be legal.

◆ indexOf()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
int juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::indexOf ( const ObjectClass *  objectToLookFor) const
inlinenoexcept

Finds the index of an object which might be in the array.

Parameters
objectToLookForthe object to look for
Returns
the index at which the object was found, or -1 if it's not found

◆ indexOfSorted()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
template<typename ElementComparator >
int juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::indexOfSorted ( ElementComparator &  comparator,
const ObjectClass *  objectToLookFor 
) const
inlinenoexcept

Finds the index of an object 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
objectToLookForthe object to search for
Returns
the index of the element, or -1 if it's not found
See also
addSorted, sort

◆ insert() [1/2]

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
ObjectClass* juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::insert ( int  indexToInsertAt,
ObjectClass *  newObject 
)
inline

Inserts a new object into the array at the given index.

Note that this object will be deleted by the OwnedArray when it is removed, so be careful not to delete it somewhere else.

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.

Be careful not to add the same object to the array more than once, as this will obviously cause deletion of dangling pointers.

Parameters
indexToInsertAtthe index at which the new element should be inserted
newObjectthe new object to add to the array
Returns
the new object that was added
See also
add, addSorted, set

Referenced by juce::OwnedArray< SwatchComponent >::addSorted(), and juce::OwnedArray< SwatchComponent >::insert().

◆ insert() [2/2]

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
ObjectClass* juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::insert ( int  indexToInsertAt,
std::unique_ptr< ObjectClass >  newObject 
)
inline

Inserts a new object into the array at the given index.

Note that this object will be deleted by the OwnedArray when it is removed, so be careful not to delete it somewhere else.

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.

Be careful not to add the same object to the array more than once, as this will obviously cause deletion of dangling pointers.

Parameters
indexToInsertAtthe index at which the new element should be inserted
newObjectthe new object to add to the array
Returns
the new object that was added
See also
add, addSorted, set

◆ insertArray()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
void juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::insertArray ( int  indexToInsertAt,
ObjectClass *const *  newObjects,
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
newObjectsthe new values to add to the array
numberOfElementshow many items are in the array
See also
insert, add, addSorted, set

◆ isEmpty()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
bool juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::isEmpty ( ) const
inlinenoexcept

Returns true if the array is empty, false otherwise.

◆ minimiseStorageOverheads()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
void juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::minimiseStorageOverheads ( )
inlinenoexcept

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.

Referenced by juce::OwnedArray< SwatchComponent >::remove(), juce::OwnedArray< SwatchComponent >::removeAndReturn(), and juce::OwnedArray< SwatchComponent >::removeRange().

◆ move()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
void juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::move ( int  currentIndex,
int  newIndex 
)
inlinenoexcept

Moves one of the objects to a different position.

This will move the object 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 object to be moved. If this isn't a valid index, then nothing will be done
newIndexthe index at which you'd like this object to end up. If this is less than zero, it will be moved to the end of the array

◆ operator=() [1/2]

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
OwnedArray& juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::operator= ( OwnedArray< ObjectClass, TypeOfCriticalSectionToUse > &&  other)
inlinenoexcept

Move assignment operator.

◆ operator=() [2/2]

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
template<class OtherObjectClass , class OtherCriticalSection >
OwnedArray& juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::operator= ( OwnedArray< OtherObjectClass, OtherCriticalSection > &&  other)
inlinenoexcept

Converting move assignment operator.

◆ operator[]()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
ObjectClass* juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::operator[] ( int  index) const
inlinenoexcept

Returns a pointer to the object at this index in the array.

If the index is out-of-range, this will return a null pointer, (and it could be null anyway, because it's ok for the array to hold null pointers as well as objects).

See also
getUnchecked

◆ remove()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
void juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::remove ( int  indexToRemove,
bool  deleteObject = true 
)
inline

Removes an object from the array.

This will remove the object at a given index (optionally also deleting it) and move back all the subsequent objects to close the gap. If the index passed in is out-of-range, nothing will happen.

Parameters
indexToRemovethe index of the element to remove
deleteObjectwhether to delete the object that is removed
See also
removeObject, removeRange

Referenced by juce::OwnedArray< SwatchComponent >::removeObject().

◆ removeAndReturn()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
ObjectClass* juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::removeAndReturn ( int  indexToRemove)
inline

Removes and returns an object from the array without deleting it.

This will remove the object at a given index and return it, moving back all the subsequent objects 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
remove, removeObject, removeRange

◆ removeLast()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
void juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::removeLast ( int  howManyToRemove = 1,
bool  deleteObjects = true 
)
inline

Removes the last n objects from the array.

Parameters
howManyToRemovehow many objects to remove from the end of the array
deleteObjectswhether to also delete the objects that are removed
See also
remove, removeObject, removeRange

◆ removeObject()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
void juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::removeObject ( const ObjectClass *  objectToRemove,
bool  deleteObject = true 
)
inline

Removes a specified object from the array.

If the item isn't found, no action is taken.

Parameters
objectToRemovethe object to try to remove
deleteObjectwhether to delete the object (if it's found)
See also
remove, removeRange

◆ removeRange()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
void juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::removeRange ( int  startIndex,
int  numberToRemove,
bool  deleteObjects = true 
)
inline

Removes a range of objects from the array.

This will remove a set of objects, starting from the given index, and move any 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 object to remove
numberToRemovehow many objects should be removed
deleteObjectswhether to delete the objects that get removed
See also
remove, removeObject

Referenced by juce::dsp::ProcessorDuplicator< MonoProcessorType, StateType >::prepare(), and juce::OwnedArray< SwatchComponent >::removeLast().

◆ set() [1/2]

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
ObjectClass* juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::set ( int  indexToChange,
ObjectClass *  newObject,
bool  deleteOldElement = true 
)
inline

Replaces an object in the array with a different one.

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

Be careful not to add the same object to the array more than once, as this will obviously cause deletion of dangling pointers.

Parameters
indexToChangethe index whose value you want to change
newObjectthe new value to set for this index.
deleteOldElementwhether to delete the object that's being replaced with the new one
See also
add, insert, remove

Referenced by juce::OwnedArray< SwatchComponent >::set().

◆ set() [2/2]

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
ObjectClass* juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::set ( int  indexToChange,
std::unique_ptr< ObjectClass >  newObject,
bool  deleteOldElement = true 
)
inline

Replaces an object in the array with a different one.

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

Be careful not to add the same object to the array more than once, as this will obviously cause deletion of dangling pointers.

Parameters
indexToChangethe index whose value you want to change
newObjectthe new value to set for this index.
deleteOldElementwhether to delete the object that's being replaced with the new one
See also
add, insert, remove

◆ size()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
int juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::size ( ) const
inlinenoexcept

◆ sort()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
template<class ElementComparator >
void juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::sort ( ElementComparator &  comparator,
bool  retainOrderOfEquivalentItems = false 
)
inlinenoexcept

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
sortArray, indexOfSorted

Referenced by juce::ValueTree::sort().

◆ swap()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
void juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::swap ( int  index1,
int  index2 
)
inlinenoexcept

Swaps a pair of objects in the array.

If either of the indexes passed in is out-of-range, nothing will happen, otherwise the two objects at these positions will be exchanged.

◆ swapWith()

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
template<class OtherArrayType >
void juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::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.

Friends And Related Function Documentation

◆ OwnedArray

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
template<class OtherObjectClass , class OtherCriticalSection >
friend class OwnedArray
friend

Member Data Documentation

◆ values

template<class ObjectClass , class TypeOfCriticalSectionToUse = DummyCriticalSection>
ArrayBase<ObjectClass*, TypeOfCriticalSectionToUse> juce::OwnedArray< ObjectClass, TypeOfCriticalSectionToUse >::values
private

Referenced by juce::OwnedArray< SwatchComponent >::add(), juce::OwnedArray< SwatchComponent >::addArray(), juce::OwnedArray< SwatchComponent >::addCopiesOf(), juce::OwnedArray< SwatchComponent >::addSorted(), juce::OwnedArray< SwatchComponent >::begin(), juce::OwnedArray< SwatchComponent >::clear(), juce::OwnedArray< SwatchComponent >::clearQuick(), juce::OwnedArray< SwatchComponent >::contains(), juce::OwnedArray< SwatchComponent >::deleteAllObjects(), juce::OwnedArray< SwatchComponent >::end(), juce::OwnedArray< SwatchComponent >::ensureStorageAllocated(), juce::OwnedArray< SwatchComponent >::getFirst(), juce::OwnedArray< SwatchComponent >::getLast(), juce::OwnedArray< SwatchComponent >::getLock(), juce::OwnedArray< SwatchComponent >::getRawDataPointer(), juce::OwnedArray< SwatchComponent >::getUnchecked(), juce::OwnedArray< SwatchComponent >::indexOf(), juce::OwnedArray< SwatchComponent >::indexOfSorted(), juce::OwnedArray< SwatchComponent >::insert(), juce::OwnedArray< SwatchComponent >::insertArray(), juce::OwnedArray< SwatchComponent >::minimiseStorageOverheads(), juce::OwnedArray< SwatchComponent >::move(), juce::OwnedArray< SwatchComponent >::operator=(), juce::OwnedArray< SwatchComponent >::operator[](), juce::OwnedArray< SwatchComponent >::remove(), juce::OwnedArray< SwatchComponent >::removeAndReturn(), juce::OwnedArray< SwatchComponent >::removeLast(), juce::OwnedArray< SwatchComponent >::removeObject(), juce::OwnedArray< SwatchComponent >::removeRange(), juce::OwnedArray< SwatchComponent >::set(), juce::OwnedArray< SwatchComponent >::size(), juce::OwnedArray< SwatchComponent >::sort(), juce::OwnedArray< SwatchComponent >::swap(), and juce::OwnedArray< SwatchComponent >::swapWith().


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