The following command supresses printing of a type:
| ?- no_write_type().After no_write_type() is called, the type will no longer be displayed during printing. To restore the type to printed status, use:
| ?- write_type().If is a variable in a call to write_type/1, then all types are subsequently printed. Alternatively, the following query restores printing of all types:
| ?- write_types.
Features and their associated values can be supressed in much the same way as types. In particular, the following command blocks the feature and its values from being printed:
| ?- no_write_feat().To restore printing of feature , use:
| ?- write_feat().If is a variable here, all features will subsequently be printed. The following special query also restores printing of all features.
| ?- write_feats.