Public Vars

Back

re-matcher (clj)

(source)

function

(re-matcher re s)
Returns an instance of java.util.regex.Matcher, for use, e.g. in re-find.

Examples

typedclojure/typedclojure
(ns ^:no-doc typed.ann.clojure
  "Type annotations for the base Clojure distribution."
  #?(:cljs (:require-macros [typed.ann-macros.clojure :as macros]))
  (:require [clojure.core :as cc]
            [typed.clojure :as t]
            #?(:clj [typed.ann-macros.clojure :as macros])
            #?(:clj typed.ann.clojure.jvm) ;; jvm annotations
            #?(:clj clojure.core.typed))
  #?(:clj
     (:import (clojure.lang PersistentHashSet PersistentList
                            APersistentMap #_IPersistentCollection
                            #_ITransientSet
                            IRef)
              (java.util Comparator Collection))))

cc/re-matcher [t/Regex t/Str :-> java.util.regex.Matcher]
cc/re-groups [t/Regex :-> (t/U nil t/Str (t/Vec (t/Option t/Str)))]
])