fun String?.plus(other: Any?) : String
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package jet.runtime;
|
||||
|
||||
/**
|
||||
* @author alex.tkachman
|
||||
*/
|
||||
public class Intrinsics {
|
||||
private Intrinsics() {
|
||||
}
|
||||
|
||||
public static String stringPlus(String self, Object other) {
|
||||
return ((self == null) ? "null" : self) + ((other == null) ? "null" : other.toString());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user