queue-base.js revision 2c5ce90c334a2d0f18474e85c93b424b6ec9daaa
6643N/A * The YUI module contains the components required for building the YUI seed file. 6643N/A * This includes the script loading mechanism, a simple queue, and the core utilities for the library. 6643N/A * A simple FIFO queue. Items are added to the Queue with add(1..n items) and 6643N/A * @param item* {MIXED} 0..n items to seed the queue 6643N/A * The collection of enqueued items 6643N/A * Get the next item in the queue. 6643N/A * @return {MIXED} the next item in the queue 6643N/A * Add 0..n items to the end of the queue 6643N/A * @param item* {MIXED} 0..n items 6643N/A * Returns the current number of queued items