Modify move NameConditions, ModifierRules to finder/base/rules and renamed and replace them with a new method of use

This commit is contained in:
2022-09-15 02:21:08 +08:00
parent f48b5b71a7
commit a9e5c0780f
24 changed files with 600 additions and 1289 deletions

View File

@@ -69,7 +69,7 @@ var type: Any?
### modifiers *- method*
```kotlin
inline fun modifiers(initiate: ModifierRules.() -> Unit): IndexTypeCondition
fun modifiers(conditions: ModifierConditions): IndexTypeCondition
```
**变更记录**
@@ -80,6 +80,10 @@ inline fun modifiers(initiate: ModifierRules.() -> Unit): IndexTypeCondition
将方法体进行 inline
`v1.0.93` `修改`
合并到 `ModifierConditions`
**功能描述**
> 设置 `Field` 标识符筛选条件。
@@ -123,13 +127,17 @@ fun name(value: String): IndexTypeCondition
### name *- method*
```kotlin
inline fun name(initiate: NameConditions.() -> Unit): IndexTypeCondition
fun name(conditions: NameConditions): IndexTypeCondition
```
**变更记录**
`v1.0.88` `新增`
`v1.0.93` `修改`
合并到 `NameConditions`
**功能描述**
> 设置 `Field` 名称条件。