blob: a0a8e86fe5129ef4451893b7dc1562bdd6a969d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package cc.woverflow.chatting.chat
data class ChatRegexes(val regexList: List<String>?) {
val compiledRegexList: MutableList<Regex> = arrayListOf()
init {
regexList?.forEach {
compiledRegexList.add(Regex(it))
}
}
}
|