untwisted
05/18/2016, 4:15 PMfun x(a: String, b: String?, c: String?) {
val myString: String = "<http://examples.com/$a?b=$b&c=$c>" ?: "<http://examples.com/$a>"
}
When I try that I get a message that the elvis operator will always return the LHS despite the fact that `b`/`c` can be null. Is there any succinct way to do this?