blob: b68176fd7fe39de556328452654fe5d6d296dd51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package at.hannibal2.skyhanni.utils.repopatterns
/**
* A utility class for allowing easier definitions of [RepoPattern]s with a common prefix.
*/
class RepoPatternExclusiveGroup internal constructor(prefix: String, owner: RepoPatternKeyOwner?) :
RepoPatternGroup(prefix, owner) {
/**
* @return returns any pattern on the [prefix] key space (including list or any other complex structure, but as a simple pattern
* */
fun getUnusedPatterns() = RepoPatternManager.getUnusedPatterns(prefix)
}
|