Spec-Zone .ru
спецификации, руководства, описания, API
Spec-Zone .ru
спецификации, руководства, описания, API
Библиотека разработчика Mac Разработчик
Поиск

 

Эта страница руководства для  версии 10.9 Mac OS X

Если Вы выполняете различную версию  Mac OS X, просматриваете документацию локально:

Читать страницы руководства

Страницы руководства предназначаются как справочник для людей, уже понимающих технологию.

  • Чтобы изучить, как руководство организовано или узнать о синтаксисе команды, прочитайте страницу руководства для страниц справочника (5).

  • Для получения дополнительной информации об этой технологии, ищите другую документацию в Библиотеке Разработчика Apple.

  • Для получения общей информации о записи сценариев оболочки, считайте Shell, Пишущий сценарий Учебника для начинающих.



struct::queue(n)                             Tcl Data Structures                            struct::queue(n)



____________________________________________________________________________________________________________

NAME
       struct::queue - Create and manipulate queue objects

SYNOPSIS
       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

____________________________________________________________________________________________________________

DESCRIPTION
       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  imple-mentation implementation
       mentation 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:

       queueName option ?arg arg ...?
              Option  and  the args determine the exact behavior of the command.  The following commands are
              possible for queue objects:

       queueName clear
              Remove all items from the queue.

       queueName destroy
              Destroy the queue, including its storage space and associated command.

       queueName get ?count?
              Return the front count items of the queue and remove them from the queue.   If  count  is  not
              specified, it defaults to 1.  If count is 1, the result is a simple string; otherwise, it is a
              list.  If specified, count must be greater than or equal to 1.  If there are not enoughs items
              in the queue to fulfull the request, this command will throw an error.

       queueName peek ?count?
              Return  the front count items of the queue, without removing them from the queue.  If count is
              not specified, it defaults to 1.  If count is 1, the result is a simple string; otherwise,  it
              is  a list.  If specified, count must be greater than or equal to 1.  If there are not enoughs
              items in the queue to fulfull the request, this command will throw an error.

       queueName put item ?item ...?
              Put the item or items specified into the queue.  If more than one item is given, they will  be
              added in the order they are listed.

       queueName unget item
              Put  the  item into the queue, at the front, i.e. before any other items already in the queue.
              This makes this operation the complement to the method get.

       queueName size
              Return the number of items in the queue.


BUGS, IDEAS, FEEDBACK
       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://source -
       forge.net/tracker/? group_id=12883].  Please also report any ideas for enhancements you may  have  for
       either package and/or documentation.

KEYWORDS
       graph, list, matrix, pool, prioqueue, record, set, skiplist, stack, tree

CATEGORY
       Data structures



struct                                              1.4.2                                   struct::queue(n)

Сообщение о проблемах

Способ сообщить о проблеме с этой страницей руководства зависит от типа проблемы:

Ошибки содержания
Ошибки отчета в содержании этой документации к проекту Tcl.
Отчеты об ошибках
Сообщите об ошибках в функциональности описанного инструмента или API к Apple через Генератор отчетов Ошибки и к проекту Tcl через их страницу создания отчетов ошибки.
Форматирование проблем
Отчет, форматирующий ошибки в интерактивной версии этих страниц со ссылками на отзыв ниже.