title |
---|
Pattern Matching |
The ANSI Common Lisp standard does not include facilities for pattern matching, but libraries existed for this task and Trivia became a community standard.
For an introduction to the concepts of pattern matching, see Trivia's wiki.
Trivia matches against a lot of lisp objects and is extensible.
The library is in Quicklisp:
(ql:quickload "trivia")
For the following examples, let's use
the library:
(use-package :trivia)
(match '(1 2 3)
((cons x y)
; ^^ pattern
(print x)
(print y)))
;; |-> 1
;; |-> (2 3)
list
is a strict pattern, it expects the length of the matched
object to be the same length as its subpatterns.
(match '(something 2 3)
((list a b _)
(values a b)))
SOMETHING
2
Without the _
placeholder, it would not match:
(match '(something 2 3)
((list a b)
(values a b)))
NIL
The list*
pattern is flexible on the object's length:
(match '(something 2 3)
((list* a b)
(values a b)))
SOMETHING
(2 3)
(match '(1 2 . 3)
((list* _ _ x)
x))
3
However pay attention that if list*
receives only one object, that
object is returned, regardless of whether or not it is a list:
(match #(0 1 2)
((list* a)
a))
#(0 1 2)
This is related to the definition of list*
in the HyperSpec: http://clhs.lisp.se/Body/f_list_.htm.
vector
checks if the object is a vector, if the lengths are the
same, and if the contents matches against each subpatterns.
vector*
is similar, but called a soft-match variant that allows if
the length is larger-than-equal to the length of subpatterns.
(match #(1 2 3)
((vector _ x _)
x))
;; -> 2
(match #(1 2 3 4)
((vector _ x _)
x))
;; -> NIL : does not match
(match #(1 2 3 4)
((vector* _ x _)
x))
;; -> 2 : soft match.
<vector-pattern> : vector | simple-vector
bit-vector | simple-bit-vector
string | simple-string
base-string | simple-base-string | sequence
(<vector-pattern> &rest subpatterns)
There are three styles that are equivalent:
(defstruct foo bar baz)
(defvar *x* (make-foo :bar 0 :baz 1)
(match *x*
;; make-instance style
((foo :bar a :baz b)
(values a b))
;; with-slots style
((foo (bar a) (baz b))
(values a b))
;; slot name style
((foo bar baz)
(values bar baz)))
The type
pattern matches if the object is of type. satisfies
matches
if the predicate returns true for the object. A lambda form is
acceptable.
All these patterns first check if the pattern is a list. If that is satisfied, then they obtain the contents, and the value is matched against the subpattern.
We can combine any pattern with some logic.
The following:
(match x
((or (list 1 a)
(cons a 3))
a))
matches against both (1 2)
and (4 . 3)
and returns 2 and 4, respectively.
It does not match when subpattern matches. The variables used in the subpattern are not visible in the body.
Guards allow us to use patterns and to verify them against a predicate.
The syntax is guard
+ subpattern
+ a test form
, and the body.
(match (list 2 5)
((guard (list x y) ; subpattern1
(= 10 (* x y))) ; test-form
:ok))
If the subpattern is true, the test form is evaluated, and if it is true it is matched against subpattern1.
Patterns can be nested:
(match '(:a (3 4) 5)
((list :a (list _ c) _)
c))
returns 4
.
See special patterns: place
, bind
and access
.