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