Push() es una función incorporada en Ruby que inserta el elemento en la cola.
Sintaxis : q_name.push(elemento)
Parámetros : La función toma el elemento a insertar en la cola.
Valor devuelto : Inserta el elemento en la cola.
Ejemplo 1 :
Ruby
#Ruby program for push() function in Queue #Create a new QUEUE q1 q1 = Queue.new #push 5 q1.push(5) #push 6 q1.push(6) #Prints the element puts q1.pop puts q1.pop
Salida :
5 6
Ejemplo 2 :
Ruby
#Ruby program for push() function in Queue #Create a new QUEUE q1 q1 = Queue.new #push 10 q1.push(10) #push 12 q1.push(12) #Prints the element puts q1.pop #Again pushes 13 q1.push(13) #Prints the element puts q1.pop #Prints the element puts q1.pop
Salida :
10 12 13
Referencia : https://devdocs.io/ruby~2.5/queue#method-i-push