You are looking at historical revision 40390 of this page. It may differ significantly from its current revision.

The fanciest define of all time

A define that can destructure, pattern match, be nested, and create generics!

(define (foop so much #!key (insight 2) (joy 3)) (list so much insight joy))
(define (foop (? string? apples) (? string? horses)) (string-append horses apples))
(list (foop "way" "no ") (foop 3 2 joy: 1))

⇒ ("no way" (3 2 2 1))

It works.♥

When there's just a normal define (with or without DSSSL stuff), it expands to a normal define. Using that variable or calling that function doesn't have any overhead, it's just bound normally.

Then when you define more stuff, it changes to become a dispatching generic multimethod.

One normal define becomes a normal define. It can have DSSSL stuff such as keyword arguments, that's fine.

Two defines (normal or not), or one un-normal define (using destructuring for example), and it switches to matching.

(define (just-a-single (oh my what)) (list my what oh))

(just-a-single (string->list "hey"))

⇒ (#\e #\y #\h)

Here is how the my-map example I've been using looks like in this system:

(define (my-map proc (x . xs)) (cons (proc x) (my-map proc xs)))
(define (my-map proc ()) '())
(my-map add1 '(1 2 3))

⇒ (2 3 4)

Lovable quirks

Precedence order

LIFO baby! Most recently defined is checked first.

Nesting in my car

Nesting in the car position (for currying purps) works fine, but they must all look the same. You can't destructure in there, only in the outermost position a.k.a. the cdr position a.k.a. the args. The car positions must be exactly the same (their code/​symbolic/​read representation must be equal?) including variable names.

The older ones aren't thrown away, exactly. The most recent one and everything older that is equal? are what counts. (This isn't slow, it uses a hash-table to sort that out.)

(define ((foo a) b c d) (* a b c d))
(define ((foo a b) c) (list a b c)); ← This one won't count
(define ((foo a) b c) (+ a b c)); ← because this one came after

(list ((foo 3) 2 3) ((foo 3) 2 3 8))

⇒ (8 144)

Defining variables

If you just define a plain vanilla variable, then there's not gonna be any dispatching there:

(define horses 23)

Any older stuff you had stored in horses isn't lost, it'll be ready for when you define a new generic using their same car signature.

The same goes for

(define horses (lambda () 23))

That's not gonna be part of a generic.

"Single variables" like this aren't saved, and can be overwritten on next call to define.

Resetting & hacking

"OMG, I sent a mistyped definition to the REPL and now I can't define over it since this new define just adds stuff!"

This doesn't work:

(define (wrong tyop) typo)
(define wrong #f)
(define (wrong typo) typo)

It'll have both the tyop and the typo version in there.

I mean, that'd kind of be fine in this particular case since the dispatcher will see the latest version first and that happens to shadow the typos, but, if you put typos in predicates or whatever you might be in for a rough time.

However, to reset when you mistype something and wanna re-define at the REPL, do (define reset: <the-name>), so in this example

(define reset: wrong)

And to get access to the entire underlying call-table* for your own metamagic and hackery purps just use (define).

We wanna make easy things easy but any thing possible.♥

Emacs nerds, here is an elisp function that resets a define you're in:

(defun mdg-reset-define ()
  (interactive)
  (save-excursion
    (re-search-backward "^(define ")
   (forward-char 1)
   (re-search-forward "(")
   (let* ((end (1- (re-search-forward "[ )]")))
      (beg (1+ (re-search-backward "(")))
      (str (buffer-substring beg end)))
     (comint-send-string
      (scheme-proc)
      (format "(define reset: %s)\n" str))
     (message "Resetting %s" str))))

Bind it to whatever. You then need to re-send the sexps you do want.

The vagaries of DSSSL

You can't combine DSSSL (i.e. #!key, #!optional and #!rest) and matchable in the same line, but, as you saw in the foop example above, the same generic can handle both DSSSL stuff and matchable just fine, in separate clauses.

The dispatcher sees all of that stuff as just one big . rest tail so it catches and collides with a lot of patterns. So be careful if you wanna combine DSSSL and generics.

Source code

This define is available under the name define-dx in the match-generics egg.

git source https://idiomdrottning.org/match-generics

Inside of the brev repo, and provided with the big brev egg, there is an extension named mdg that imports it under the name define and the OG define as define-og. So just (import brev mdg), which is now part of the little brev compiler shell wrapper and is prompted for by the brev2scm conversion process. Or if you want just the define and not the rest of the brev batteries,

(import (rename match-generics (define-dx define)))