We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c06853 commit 4eadbb0Copy full SHA for 4eadbb0
1 file changed
ksmt-core/src/main/kotlin/io/ksmt/utils/StringUtils.kt
@@ -0,0 +1,11 @@
1
+package io.ksmt.utils
2
+
3
+import io.ksmt.expr.KStringLiteralExpr
4
5
+object StringUtils {
6
7
+ @JvmStatic
8
+ fun concatStrings(lhs: KStringLiteralExpr, rhs: KStringLiteralExpr): KStringLiteralExpr = with (lhs.ctx) {
9
+ mkStringLiteral(lhs.value + rhs.value)
10
+ }
11
+}
0 commit comments