lpmoo-1.2/etc/
lpmoo-1.2/mudlib/
lpmoo-1.2/mudlib/etc/
lpmoo-1.2/mudlib/include/
lpmoo-1.2/mudlib/include/moo/
lpmoo-1.2/mudlib/lpc/
lpmoo-1.2/mudlib/std/auto/
lpmoo-1.2/mudlib/std/bfuns/
NAME
	tableinsert - insert a new key/value pair into a table

SYNOPSIS
	table tableinsert(table, key, value)

DESCRIPTION
	A new table is created by pairing the `key' and `value'
	arguments (which may be of any MOO value) and inserting them
	into a copy of the table given by the `table' argument. If
	`key' is already bound in the table, its associated value will
	be replaced by `value'. The new table is returned.

	Note that the original table is not modified.

SEE ALSO
	tablemap, tabledelete, tablekeys, tablevalues