Index: doc/Object.man =================================================================== diff -u -r904ff24ee84cffe6fa24e00dc75bfe6872d18cf6 -r28458dc55de6b9134e16623722f3fd5f2c109caf --- doc/Object.man (.../Object.man) (revision 904ff24ee84cffe6fa24e00dc75bfe6872d18cf6) +++ doc/Object.man (.../Object.man) (revision 28458dc55de6b9134e16623722f3fd5f2c109caf) @@ -563,16 +563,20 @@ [list_end] -[cmd_def object] +[cmd_def filter] [list_begin definitions] [call [arg obj] [method {object filter}] ...] [para] Description of [method {object filter}] ... +[list_end] -[call [arg obj] [method {object mixin}] ...] -[para] Description of [method {object mixin}] ... +[cmd_def mixin] +[list_begin definitions] + +[include mixin.man.inc] + [list_end] [cmd_def require] Index: doc/delete.man.inc =================================================================== diff -u -r430801481ec743e9b44376bc82f1568ac165cdf7 -r28458dc55de6b9134e16623722f3fd5f2c109caf --- doc/delete.man.inc (.../delete.man.inc) (revision 430801481ec743e9b44376bc82f1568ac165cdf7) +++ doc/delete.man.inc (.../delete.man.inc) (revision 28458dc55de6b9134e16623722f3fd5f2c109caf) @@ -3,14 +3,18 @@ [keywords "alias method"] [keywords "forwarder method"] -[call [arg obj] [method delete] [const [vset SCOPE]] [const property] [arg propertyName]] -[call [arg obj] [method delete] [const [vset SCOPE]] [const variable] [arg variableName]] -[call [arg obj] [method delete] [const [vset SCOPE]] [const method] [arg methodName]] +[call [arg obj] [method delete] [const [vset SCOPE]] [method property]|[method variable]|[method method] [arg arg]] +This method serves as the equivalent to Tcl's [cmd rename] for +removing structural (properties, variables) and behavioral features +(methods) of the [vset SCOPE]: + +[def "[arg obj] [method delete] [const [vset SCOPE]] [const property] [arg propertyName]"] +[def "[arg obj] [method delete] [const [vset SCOPE]] [const variable] [arg variableName]"] +[def "[arg obj] [method delete] [const [vset SCOPE]] [const method] [arg methodName]"] + Removes a property [arg propertyName], variable [arg variableName], and method [arg methodNome], respectively, previously defined for the -scope of the [vset SCOPE]. This method is the equivalent to Tcl's [cmd rename] for -NX-specific constructs such as properties, object variables, and -methods. +scope of the [vset SCOPE]. [para] [method "delete [const [vset SCOPE]] [const method]"] can be equally used for removing regular methods (see [method "[vset SCOPE] method"]), an [term "alias method"] (see [method "[vset SCOPE] alias"]), and a [term "forwarder method"] (see [method "[vset SCOPE] forward"]).