Recherche…


Remarques

La bibliothèque core.match implémente un algorithme de compilation de correspondance de modèle qui utilise la notion de "nécessité" à partir de la correspondance de modèle paresseux.

Littéraux correspondants

(let [x true
      y true
      z true]
  (match [x y z]
     [_ false true] 1
     [false true _ ] 2
     [_ _ false] 3
     [_ _ true] 4))

;=> 4

Faire correspondre un vecteur

(let [v [1 2 3]]
  (match [v]
    [[1 1 1]] :a0
    [[1 _ 1]] :a1
    [[1 2 _]] :a2))  ;; _ is used for wildcard matching

;=> :a2

Faire correspondre une carte

(let [x {:a 1 :b 1}]
   (match [x]
     [{:a _ :b 2}] :a0
     [{:a 1 :b _}] :a1
     [{:x 3 :y _ :z 4}] :a2))

;=> :a1

Correspondant à un symbole littéral

(match [['asymbol]]
  [['asymbol]] :success)

;=> :success


Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow