|
JUCE-7.0.12-0-g4f43011b96 JUCE-7.0.12-0-g4f43011b96
JUCE — C++ application framework with suport for VST, VST3, LV2 audio plug-ins
« « « Anklang Documentation |
Allows efficient repeated insertions into a list. More...
#include "juce_LinkedListPointer.h"
Public Member Functions | |
| Appender (LinkedListPointer &endOfListPointer) noexcept | |
| Creates an appender which will add items to the given list. | |
| void | append (ObjectType *const newItem) noexcept |
| Appends an item to the list. | |
Allows efficient repeated insertions into a list.
You can create an Appender object which points to the last element in your list, and then repeatedly call Appender::append() to add items to the end of the list in O(1) time.
Definition at line 338 of file juce_LinkedListPointer.h.
|
noexcept |
Creates an appender which will add items to the given list.
Definition at line 343 of file juce_LinkedListPointer.h.
|
noexcept |
Appends an item to the list.
Definition at line 351 of file juce_LinkedListPointer.h.