On Tue, Jun 16, 2020 at 10:00 PM Marc Nieper-Wißkirchen <xxxxxx@nieper-wisskirchen.de> wrote:

`assume` should only do nothing in a mode that is equivalent to "-O3
-DNDEBUG=1".

srfi-145 encourages so, but I always thought it is a hint to the implementation (such as type declarations in CL).
At least, the code can't count on it raising an error.

> By the way, can't (assume (just? obj) message) be enough?

The idea was to use the return value of `assume`.

I see.

So, the issue comes down to whether you accept (maybe-ref (nothing)) can return #f.  Now I think about it, I can always say (maybe-ref obj (cut error "whatever")) if I want to throw an error, so just writing (fn (maybe-ref obj)) for an extra (optional) check may be convenient.  Assuming fn is prepared to get #f when obj is Nothing.