(fn)
| 27 | |
| 28 | # Decorator form |
| 29 | def half_function(fn): |
| 30 | wrap_fn = functools.partial(wrap.make_cast_wrapper, try_caching=True) |
| 31 | return _decorator_helper(fn, utils.maybe_half, wrap_fn) |
| 32 | |
| 33 | def float_function(fn): |
| 34 | wrap_fn = functools.partial(wrap.make_cast_wrapper, try_caching=False) |
nothing calls this directly
no test coverage detected