 
      
      queue::getsize()Get the size of the Queue
queue::getsize()There are no parameters.
number — Returns the size of the Queue
import adt/queue
 
queue = queue()
 
queue.push(10)
queue.push(12)
queue.push(8)
 
s = queue.getsize()   ' Returns 3