close Warning: Can't synchronize with repository "(default)" (The repository directory has changed, you should resynchronize the repository with: trac-admin $ENV repository resync '(default)'). Look in the Trac log for more information.

Changeset 3961


Ignore:
Timestamp:
2016-05-30T11:00:47-07:00 (8 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/pair-queue.lisp

    r3960 r3961  
    124124
    125125(defgeneric enqueue (self object)
    126   (:documentation "Insert an object into a queue SELF.")
     126  (:documentation "Insert an object OBJECT into a queue SELF.")
    127127  (:method ((self critical-pair-queue) (pair critical-pair))
    128128    (with-slots (pq)
     
    131131
    132132(defgeneric dequeue (self)
     133  (:documentation "Remove an object from a queue SELF. Returns the removed object.")
    133134  (:method ((self critical-pair-queue))
    134135    (with-slots (pq)
     
    137138
    138139(defgeneric queue-size (self)
     140  (:documentation "Returns the number of elements in the queue SELF.")
    139141  (:method ((self critical-pair-queue))
    140142    (with-slots (pq)
Note: See TracChangeset for help on using the changeset viewer.