Added name, simpleName, toString function in CurrentClass and inline function in ReflectionFactory

This commit is contained in:
2022-08-14 02:50:29 +08:00
parent e9b09cf92e
commit 60c3b923df
4 changed files with 98 additions and 13 deletions

View File

@@ -442,11 +442,11 @@ inline fun Class<*>.constructor(initiate: ConstructorCondition): ConstructorFind
### current [method]
```kotlin
inline fun <reified T : Any> T.current(initiate: CurrentClass.() -> Unit): T
inline fun <reified T : Any> T.current(): CurrentClass
```
```kotlin
inline fun <reified T : Any> T.current(): CurrentClass
inline fun <reified T : Any> T.current(initiate: CurrentClass.() -> Unit): T
```
**变更记录**