.. hook:: H_DEFAULT_METHOD :arg string value: int (mixed & result, string fun, varargs args) :arg closure value: int (mixed & result, object ob, string fun, varargs args) Optional hook to provide default implementation for unresolved calls. Hook setting can be any closure, or the name of the function to call in the object. This hook is called whenever a :efun:`call_other`, :efun:`call_resolved` or :efun:`call_out` on named function (as opposed to a closure) couldn't be resolved. The hook has then the opportunity to provide a default implementation. Exempt from this behaviour are calls to the master object, to simul-efuns, and calls done with :efun:`call_direct` and :efun:`call_direct_resolved`. If the hook is the name of an lfun, it is called in the target object; otherwise if it is a closure, the target object is passed as parameter . The other parameters passed are the name of the called function, the arguments passed to the call (if any), and a reference to a variable for the call result. If the hook can resolve the call, it has to return the call result in and 1 as function result. If the hook can not (or doesn't want to) resolve the call, it has to return 0. :history 3.3.113 introduced: allowed static functions to be given by name. .. seealso:: :overview:`hook`