-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathRegexOps.scala
37 lines (25 loc) · 1.05 KB
/
RegexOps.scala
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package ceedubs.irrec
package regex
import cats.Foldable
import cats.data.Chain
import java.util.regex.Pattern
final class RegexOps[In, M, Out](private val r: Regex[In, M, Out]) extends AnyVal {
def |(o: Regex[In, M, Out]): Regex[In, M, Out] = combinator.or(r, o)
def either[Out2](o: Regex[In, M, Out2]): Regex[In, M, Either[Out, Out2]] =
combinator.either(r, o)
def matcher[F[_]: Foldable]: F[In] => Boolean = Regex.matcher(r)
def compile: ParseState[In, Out] = Regex.compile(r)
def withMatched: Regex[In, M, (Chain[In], Out)] =
combinator.withMatched(r)
def matched: Regex[In, M, Chain[In]] = combinator.matched(r)
}
final class RegexCOps[Out](private val r: RegexC[Out]) extends AnyVal {
def pprint: String = RegexPrettyPrinter.pprint(r)
def withMatchedS: RegexC[(String, Out)] = char.withMatchedS(r)
def matchedS: RegexC[String] = char.matchedS(r)
def stringMatcher: String => Boolean = {
val m = Regex.matcher(r)(IndexedSeqFoldable.instance)
m(_)
}
def toPattern: Pattern = Pattern.compile(pprint, Pattern.DOTALL)
}