Ignore-Method

(ignore-method statement) -> #f

Causes the given statement to return #f rather than evaluating.

Example:

>>(map ignore-method (list 1 2 3))
:: (#f #f #f)

Note that this is not a useful example, but it does demonstrate the behavior of ignore-method.

See Also: refuse-method