lpc4/lib/
lpc4/lib/doc/efun/
lpc4/lib/doc/lfun/
lpc4/lib/doc/operators/
lpc4/lib/doc/simul_efuns/
lpc4/lib/doc/types/
lpc4/lib/etc/
lpc4/lib/include/
lpc4/lib/include/arpa/
lpc4/lib/obj/d/
lpc4/lib/save/
lpc4/lib/secure/
lpc4/lib/std/
lpc4/lib/std/living/
NAME
	function - a functionpointer type

SYNTAX
	if foo is a function, then the word foo will be a functionpointer.
	if foo is a function in an inherited program ::foo is a
	functionpointer. If the inherited program was called bar, then
	bar::foo is also a functionpointer. If gazonk is an object
	then gazonk->foo is a pointer to the function foo in gazonk. 

OPERATORS
	->, ()
	functoinp, call_function, get_function, function_name, function_object
	this_function

DESCRIPTION
	A functionpointer is a reference to a function in an object. It can be
	called with call_function which can also be written as just ().
	If the object the functionpointer is in is destructed the pointer will
	become 0. If you try to call a functionpointer that has is 0 then 0
	will be returned.