Modify merge finder lambda to typealias

This commit is contained in:
2022-08-11 23:29:42 +08:00
parent 9201a18b96
commit 293ae08b0e
12 changed files with 55 additions and 43 deletions

View File

@@ -33,7 +33,7 @@ fun superClass(): SuperClass
### field [method]
```kotlin
inline fun field(initiate: FieldFinder.() -> Unit): FieldFinder.Result.Instance
inline fun field(initiate: FieldCondition): FieldFinder.Result.Instance
```
**变更记录**
@@ -47,7 +47,7 @@ inline fun field(initiate: FieldFinder.() -> Unit): FieldFinder.Result.Instance
### method [method]
```kotlin
inline fun method(initiate: MethodFinder.() -> Unit): MethodFinder.Result.Instance
inline fun method(initiate: MethodCondition): MethodFinder.Result.Instance
```
**变更记录**
@@ -75,7 +75,7 @@ inner class SuperClass internal constructor()
#### field [method]
```kotlin
inline fun field(initiate: FieldFinder.() -> Unit): FieldFinder.Result.Instance
inline fun field(initiate: FieldCondition): FieldFinder.Result.Instance
```
**变更记录**
@@ -89,7 +89,7 @@ inline fun field(initiate: FieldFinder.() -> Unit): FieldFinder.Result.Instance
#### method [method]
```kotlin
inline fun method(initiate: MethodFinder.() -> Unit): MethodFinder.Result.Instance
inline fun method(initiate: MethodCondition): MethodFinder.Result.Instance
```
**变更记录**