Arguments: Element element, IntegerPriority priority
Push a new element in the queue. Its priority must be greater or equal to
the highest priority present in the queue, minus one. This condition is
DCHECKed, and violating it yields erroneous queue behavior in NDEBUG mode.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-08-06 UTC."],[[["`PriorityQueueWithRestrictedPush` is a C++ class offering a priority queue implementation with specific restrictions on element insertion."],["The queue allows pushing elements only if their priority is within a certain range relative to the current highest priority."],["Core functionalities include `Push`, `Pop`, `IsEmpty`, and `Clear` for managing elements and queue state."],["`Pop` retrieves and removes the highest priority element, while `IsEmpty` checks if the queue is empty."],["The `Clear` method resets the queue to an empty state."]]],[]]