We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 641e955 commit fb0e383Copy full SHA for fb0e383
README.md
@@ -0,0 +1,22 @@
1
+[](https://central.sonatype.com/search?namespace=io.github.stslex)
2
+
3
+> Check annotated functions arguments. If they don't change - return last result.
4
+> Functions could be logged.
5
6
+import compiler plugin:
7
+```kotlin
8
+dependencies {
9
+ implementation("io.github.stslex:compiler-plugin:0.0.1")
10
+ kotlinCompilerPluginClasspath("io.github.stslex:compiler-plugin:0.0.1")
11
+}
12
+```
13
14
+in code:
15
16
+import io.github.stslex.compiler_plugin.DistinctUntilChangeFun
17
18
+@DistinctUntilChangeFun
19
+fun setUserName(username: String){
20
+ // function logic
21
22
0 commit comments