Difference between revisions of "Channel:pop"

m
m
Line 1: Line 1:
 
{{newin|[[0.9.0]]|090|type=function}}
 
{{newin|[[0.9.0]]|090|type=function}}
Retrieves the value of a [[Channel]] message and removes it from the message queue. The value of the message can be a boolean, string, number or a LÖVE userdata. It returns nil if there are no messages in the queue.
+
Retrieves the value of a [[Channel]] message and removes it from the message queue.
 +
 
 +
The value of the message can be a boolean, string, number or a LÖVE userdata. It returns nil if there are no messages in the queue.
 
== Function ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===

Revision as of 06:23, 5 June 2013

Available since LÖVE 0.9.0
This function is not supported in earlier versions.

Retrieves the value of a Channel message and removes it from the message queue.

The value of the message can be a boolean, string, number or a LÖVE userdata. It returns nil if there are no messages in the queue.

Function

Synopsis

value = Channel:pop( )

Arguments

None.

Returns

boolean, number, string or LÖVE userdata value
The contents of the message.

See Also

Other Languages