Site Tools


push_function

# $EPIC: push_function.txt,v 1.4 2007/03/23 16:39:05 jnelson Exp $

Synopsis:

$push(<variable name> <data>)

Description:

This function appends a word to the end of <variable name>. The <data> is considered to be one word. This means if xdebug dword is turned on, then the client will add double quotes around <data> before appending it to the variable!

You need to turn off xdebug dword to get the epic4 behavior!

Practical:

Push adds a new word to the end of $<variable name>, which is considered a variable containing a word list. It is equivalent to the following:

@ <variable_name> #= (<variable_name> ? [ ] : []) ## data

This function is useful to append a word to the end of a word list, which you might do to create a FIFO, LIFO, or other ordered queues. The reverse of push() is pop() and the inverse is unshift(), while the inverted reverse is shift().

If <variable name> doesn't exist before you push() something onto it, then it is created automatically for you.

Returns:

The new value of $<variable name>.

Examples:

$push(blah hello there)            adds "hello there" to end of $blah

History:

This function first appeared in “+7” (post-ircII, pre-EPIC)

push_function.txt · Last modified: 2007/03/23 16:39 by 127.0.0.1