Loading...
Searching...
No Matches
juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse > Class Template Reference

Detailed Description

template<class ElementType, class TypeOfCriticalSectionToUse>
class juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >

A basic object container.

This class isn't really for public use - it's used by the other array classes, but might come in handy for some purposes.

It inherits from a critical section class to allow the arrays to use the "empty base class optimisation" pattern to reduce their footprint.

See also
Array, OwnedArray, ReferenceCountedArray

Inherits TypeOfCriticalSectionToUse.

Public Member Functions

 ArrayBase () noexcept=default
 ~ArrayBase ()
 ArrayBase (ArrayBase &&other) noexcept
ArrayBaseoperator= (ArrayBase &&other) noexcept
template<class OtherElementType, class OtherCriticalSection, typename = AllowConversion<OtherElementType, OtherCriticalSection>>
 ArrayBase (ArrayBase< OtherElementType, OtherCriticalSection > &&other) noexcept
 Converting move constructor.
template<class OtherElementType, class OtherCriticalSection, typename = AllowConversion<OtherElementType, OtherCriticalSection>>
ArrayBaseoperator= (ArrayBase< OtherElementType, OtherCriticalSection > &&other) noexcept
 Converting move assignment operator.
template<class OtherArrayType>
bool operator== (const OtherArrayType &other) const noexcept
template<class OtherArrayType>
bool operator!= (const OtherArrayType &other) const noexcept
ElementType & operator[] (const int index) noexcept
const ElementType & operator[] (const int index) const noexcept
ElementType getValueWithDefault (const int index) const noexcept
ElementType getFirst () const noexcept
ElementType getLast () const noexcept
ElementType * begin () noexcept
const ElementType * begin () const noexcept
ElementType * end () noexcept
const ElementType * end () const noexcept
ElementType * data () noexcept
const ElementType * data () const noexcept
int size () const noexcept
int capacity () const noexcept
void setAllocatedSize (int numElements)
void ensureAllocatedSize (int minNumElements)
void shrinkToNoMoreThan (int maxNumElements)
void clear ()
void swapWith (ArrayBase &other) noexcept
void add (const ElementType &newElement)
void add (ElementType &&newElement)
template<typename... OtherElements>
void add (const ElementType &firstNewElement, OtherElements &&... otherElements)
template<typename... OtherElements>
void add (ElementType &&firstNewElement, OtherElements &&... otherElements)
template<typename Type>
void addArray (const Type *elementsToAdd, int numElementsToAdd)
template<typename TypeToCreateFrom>
void addArray (const std::initializer_list< TypeToCreateFrom > &items)
template<class OtherArrayType>
void addArray (const OtherArrayType &arrayToAddFrom)
template<class OtherArrayType>
std::enable_if_t<! std::is_pointer_v< OtherArrayType >, int > addArray (const OtherArrayType &arrayToAddFrom, int startIndex, int numElementsToAdd=-1)
void insert (int indexToInsertAt, ParameterType newElement, int numberOfTimesToInsertIt)
void insertArray (int indexToInsertAt, const ElementType *newElements, int numberOfElements)
void removeElements (int indexToRemoveAt, int numElementsToRemove)
void swap (int index1, int index2)
void move (int currentIndex, int newIndex) noexcept

Constructors and Destructors

◆ ArrayBase() [1/3]

template<class ElementType, class TypeOfCriticalSectionToUse>
juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::ArrayBase ( )
defaultnoexcept

◆ ~ArrayBase()

template<class ElementType, class TypeOfCriticalSectionToUse>
juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::~ArrayBase ( )

References ArrayBase, and clear().

◆ ArrayBase() [2/3]

template<class ElementType, class TypeOfCriticalSectionToUse>
juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::ArrayBase ( ArrayBase< ElementType, TypeOfCriticalSectionToUse > && other)
noexcept

References ArrayBase.

◆ ArrayBase() [3/3]

template<class ElementType, class TypeOfCriticalSectionToUse>
template<class OtherElementType, class OtherCriticalSection, typename = AllowConversion<OtherElementType, OtherCriticalSection>>
juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::ArrayBase ( ArrayBase< OtherElementType, OtherCriticalSection > && other)
noexcept

Converting move constructor.

Only enabled when the other array has a different type to this one. If you see a compile error here, it's probably because you're attempting a conversion that HeapBlock won't allow.

References ArrayBase.

Member Functions

◆ operator=() [1/2]

template<class ElementType, class TypeOfCriticalSectionToUse>
ArrayBase & juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::operator= ( ArrayBase< ElementType, TypeOfCriticalSectionToUse > && other)
noexcept

References ArrayBase, and swapWith().

◆ operator=() [2/2]

template<class ElementType, class TypeOfCriticalSectionToUse>
template<class OtherElementType, class OtherCriticalSection, typename = AllowConversion<OtherElementType, OtherCriticalSection>>
ArrayBase & juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::operator= ( ArrayBase< OtherElementType, OtherCriticalSection > && other)
noexcept

Converting move assignment operator.

Only enabled when the other array has a different type to this one. If you see a compile error here, it's probably because you're attempting a conversion that HeapBlock won't allow.

References ArrayBase.

◆ operator==()

template<class ElementType, class TypeOfCriticalSectionToUse>
template<class OtherArrayType>
bool juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::operator== ( const OtherArrayType & other) const
noexcept

References begin(), juce::exactlyEqual(), and size().

Referenced by operator!=().

◆ operator!=()

template<class ElementType, class TypeOfCriticalSectionToUse>
template<class OtherArrayType>
bool juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::operator!= ( const OtherArrayType & other) const
noexcept

References operator==().

◆ operator[]() [1/2]

template<class ElementType, class TypeOfCriticalSectionToUse>
ElementType & juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::operator[] ( const int index)
noexcept

◆ operator[]() [2/2]

template<class ElementType, class TypeOfCriticalSectionToUse>
const ElementType & juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::operator[] ( const int index) const
noexcept

◆ getValueWithDefault()

template<class ElementType, class TypeOfCriticalSectionToUse>
ElementType juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::getValueWithDefault ( const int index) const
noexcept

◆ getFirst()

template<class ElementType, class TypeOfCriticalSectionToUse>
ElementType juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::getFirst ( ) const
noexcept

◆ getLast()

template<class ElementType, class TypeOfCriticalSectionToUse>
ElementType juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::getLast ( ) const
noexcept

◆ begin() [1/2]

template<class ElementType, class TypeOfCriticalSectionToUse>
ElementType * juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::begin ( )
noexcept

Referenced by operator==().

◆ begin() [2/2]

template<class ElementType, class TypeOfCriticalSectionToUse>
const ElementType * juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::begin ( ) const
noexcept

◆ end() [1/2]

template<class ElementType, class TypeOfCriticalSectionToUse>
ElementType * juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::end ( )
noexcept

◆ end() [2/2]

template<class ElementType, class TypeOfCriticalSectionToUse>
const ElementType * juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::end ( ) const
noexcept

◆ data() [1/2]

template<class ElementType, class TypeOfCriticalSectionToUse>
ElementType * juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::data ( )
noexcept

◆ data() [2/2]

template<class ElementType, class TypeOfCriticalSectionToUse>
const ElementType * juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::data ( ) const
noexcept

◆ size()

template<class ElementType, class TypeOfCriticalSectionToUse>
int juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::size ( ) const
noexcept

Referenced by operator==().

◆ capacity()

template<class ElementType, class TypeOfCriticalSectionToUse>
int juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::capacity ( ) const
noexcept

◆ setAllocatedSize()

template<class ElementType, class TypeOfCriticalSectionToUse>
void juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::setAllocatedSize ( int numElements)

◆ ensureAllocatedSize()

template<class ElementType, class TypeOfCriticalSectionToUse>
void juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::ensureAllocatedSize ( int minNumElements)

References setAllocatedSize().

Referenced by addArray(), addArray(), and addArray().

◆ shrinkToNoMoreThan()

template<class ElementType, class TypeOfCriticalSectionToUse>
void juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::shrinkToNoMoreThan ( int maxNumElements)

References setAllocatedSize().

◆ clear()

template<class ElementType, class TypeOfCriticalSectionToUse>
void juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::clear ( )

Referenced by ~ArrayBase().

◆ swapWith()

template<class ElementType, class TypeOfCriticalSectionToUse>
void juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::swapWith ( ArrayBase< ElementType, TypeOfCriticalSectionToUse > & other)
noexcept

References ArrayBase.

Referenced by operator=().

◆ add() [1/4]

template<class ElementType, class TypeOfCriticalSectionToUse>
void juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::add ( const ElementType & newElement)

◆ add() [2/4]

template<class ElementType, class TypeOfCriticalSectionToUse>
void juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::add ( ElementType && newElement)

◆ add() [3/4]

template<class ElementType, class TypeOfCriticalSectionToUse>
template<typename... OtherElements>
void juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::add ( const ElementType & firstNewElement,
OtherElements &&... otherElements )

◆ add() [4/4]

template<class ElementType, class TypeOfCriticalSectionToUse>
template<typename... OtherElements>
void juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::add ( ElementType && firstNewElement,
OtherElements &&... otherElements )

◆ addArray() [1/4]

template<class ElementType, class TypeOfCriticalSectionToUse>
template<typename Type>
void juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::addArray ( const Type * elementsToAdd,
int numElementsToAdd )

References ensureAllocatedSize().

Referenced by addArray().

◆ addArray() [2/4]

template<class ElementType, class TypeOfCriticalSectionToUse>
template<typename TypeToCreateFrom>
void juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::addArray ( const std::initializer_list< TypeToCreateFrom > & items)

References ensureAllocatedSize().

◆ addArray() [3/4]

template<class ElementType, class TypeOfCriticalSectionToUse>
template<class OtherArrayType>
void juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::addArray ( const OtherArrayType & arrayToAddFrom)

References ensureAllocatedSize().

◆ addArray() [4/4]

template<class ElementType, class TypeOfCriticalSectionToUse>
template<class OtherArrayType>
std::enable_if_t<! std::is_pointer_v< OtherArrayType >, int > juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::addArray ( const OtherArrayType & arrayToAddFrom,
int startIndex,
int numElementsToAdd = -1 )

References addArray().

◆ insert()

template<class ElementType, class TypeOfCriticalSectionToUse>
void juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::insert ( int indexToInsertAt,
ParameterType newElement,
int numberOfTimesToInsertIt )

◆ insertArray()

template<class ElementType, class TypeOfCriticalSectionToUse>
void juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::insertArray ( int indexToInsertAt,
const ElementType * newElements,
int numberOfElements )

◆ removeElements()

template<class ElementType, class TypeOfCriticalSectionToUse>
void juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::removeElements ( int indexToRemoveAt,
int numElementsToRemove )

◆ swap()

template<class ElementType, class TypeOfCriticalSectionToUse>
void juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::swap ( int index1,
int index2 )

◆ move()

template<class ElementType, class TypeOfCriticalSectionToUse>
void juce::ArrayBase< ElementType, TypeOfCriticalSectionToUse >::move ( int currentIndex,
int newIndex )
noexcept
linkedin facebook pinterest youtube rss twitter instagram facebook-blank rss-blank linkedin-blank pinterest youtube twitter instagram