MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame^] | 1 | SYNOPSIS |
| 2 | string function_exists(string str, object ob) |
| 3 | |
| 4 | DESCRIPTION |
| 5 | Return the file name of the object that defines the function |
| 6 | str in object ob. The returned value can be other than |
| 7 | object_name(ob) if the function is defined in an inherited |
| 8 | object. In !compat mode, the returned name always begins with a |
| 9 | '/' (absolute path). 0 is returned if the function was not |
| 10 | defined, or was defined as static (protected function on the |
| 11 | other hand are found). |
| 12 | |
| 13 | SEE ALSO |
| 14 | call_other(E), call_resolved(E), functionlist(E) |