struct::queue(n) | Tcl Data Structures | struct::queue(n) |
struct::queue - Create and manipulate queue objects
package require Tcl 8.4
package require struct::queue ?1.4.2?
queueName option ?arg arg ...?
queueName clear
queueName destroy
queueName get ?count?
queueName peek ?count?
queueName put item ?item ...?
queueName unget item
queueName size
The ::struct namespace contains a commands for processing finite queues.
It exports a single command, ::struct::queue. All functionality provided here can be reached through a subcommand of this command.
Note: As of version 1.4.1 of this package a critcl based C implementation is available. This implementation however requires Tcl 8.4 to run.
The ::struct::queue command creates a new queue object with an associated global Tcl command whose name is queueName. This command may be used to invoke various operations on the queue. It has the following general form:
This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category struct :: queue of the Tcllib SF Trackers [http://sourceforge.net/tracker/?group_id=12883]. Please also report any ideas for enhancements you may have for either package and/or documentation.
graph, list, matrix, pool, prioqueue, record, set, skiplist, stack, tree
Data structures
1.4.2 | struct |