[#BloombergLP-bdlcc-TimeQueue-09c-popLE-00] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlcc.adoc[bdlcc]::xref:BloombergLP/bdlcc/TimeQueue-09c.adoc[TimeQueue]::popLE :relfileprefix: ../../../ :mrdocs: `popLE` overloads == Synopses Declared in `<bdlcc_timequeue.h>` Remove all items with a time less than or equal to the specified `time`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bdlcc/TimeQueue-09c/popLE-01.adoc[popLE](xref:BloombergLP/bsls/TimeInterval.adoc[bsls::TimeInterval] const& time); ---- [.small]#xref:BloombergLP/bdlcc/TimeQueue-09c/popLE-01.adoc[_» more..._]# Remove up to `maxTimers` items with a time less than or equal to `time`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bdlcc/TimeQueue-09c/popLE-06.adoc[popLE]( xref:BloombergLP/bsls/TimeInterval.adoc[bsls::TimeInterval] const& time, int maxTimers); ---- [.small]#xref:BloombergLP/bdlcc/TimeQueue-09c/popLE-06.adoc[_» more..._]# Same as the preceding overload, appending removed items to the specified `buffer`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bdlcc/TimeQueue-09c/popLE-07.adoc[popLE]( xref:BloombergLP/bsls/TimeInterval.adoc[bsls::TimeInterval] const& time, xref:bsl/vector-00d.adoc[bsl::vector<TimeQueueItem<DATA>>]* buffer, int* newLength = 0, xref:BloombergLP/bsls/TimeInterval.adoc[bsls::TimeInterval]* newMinTime = 0); ---- [.small]#xref:BloombergLP/bdlcc/TimeQueue-09c/popLE-07.adoc[_» more..._]# Same as the preceding overload, appending removed items to the specified `buffer`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bdlcc/TimeQueue-09c/popLE-08.adoc[popLE]( xref:BloombergLP/bsls/TimeInterval.adoc[bsls::TimeInterval] const& time, std::pmr::vector<TimeQueueItem<DATA>>* buffer, int* newLength = 0, xref:BloombergLP/bsls/TimeInterval.adoc[bsls::TimeInterval]* newMinTime = 0); ---- [.small]#xref:BloombergLP/bdlcc/TimeQueue-09c/popLE-08.adoc[_» more..._]# Same as the preceding overload, appending removed items to the specified `buffer`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bdlcc/TimeQueue-09c/popLE-03.adoc[popLE]( xref:BloombergLP/bsls/TimeInterval.adoc[bsls::TimeInterval] const& time, std::vector<TimeQueueItem<DATA>>* buffer, int* newLength = 0, xref:BloombergLP/bsls/TimeInterval.adoc[bsls::TimeInterval]* newMinTime = 0); ---- [.small]#xref:BloombergLP/bdlcc/TimeQueue-09c/popLE-03.adoc[_» more..._]# Same as the preceding overload, appending removed items to the specified `buffer`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bdlcc/TimeQueue-09c/popLE-0d.adoc[popLE]( xref:BloombergLP/bsls/TimeInterval.adoc[bsls::TimeInterval] const& time, int maxTimers, xref:bsl/vector-00d.adoc[bsl::vector<TimeQueueItem<DATA>>]* buffer, int* newLength = 0, xref:BloombergLP/bsls/TimeInterval.adoc[bsls::TimeInterval]* newMinTime = 0); ---- [.small]#xref:BloombergLP/bdlcc/TimeQueue-09c/popLE-0d.adoc[_» more..._]# Same as the preceding overload, appending removed items to the specified `buffer`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bdlcc/TimeQueue-09c/popLE-0f.adoc[popLE]( xref:BloombergLP/bsls/TimeInterval.adoc[bsls::TimeInterval] const& time, int maxTimers, std::pmr::vector<TimeQueueItem<DATA>>* buffer, int* newLength = 0, xref:BloombergLP/bsls/TimeInterval.adoc[bsls::TimeInterval]* newMinTime = 0); ---- [.small]#xref:BloombergLP/bdlcc/TimeQueue-09c/popLE-0f.adoc[_» more..._]# Same as the preceding overload, appending removed items to the specified `buffer`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bdlcc/TimeQueue-09c/popLE-0a.adoc[popLE]( xref:BloombergLP/bsls/TimeInterval.adoc[bsls::TimeInterval] const& time, int maxTimers, std::vector<TimeQueueItem<DATA>>* buffer, int* newLength = 0, xref:BloombergLP/bsls/TimeInterval.adoc[bsls::TimeInterval]* newMinTime = 0); ---- [.small]#xref:BloombergLP/bdlcc/TimeQueue-09c/popLE-0a.adoc[_» more..._]# == Parameters [cols="1,4"] |=== | Name| Description | *time* | time threshold for removing items | *maxTimers* | maximum number of items to remove | *buffer* | receives the removed items | *newLength* | if non‐null, receives the new queue length | *newMinTime* | if non‐null, receives the new minimum time |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#