Suppose some written the following Kotlin function to test the comments length style: fun commentValue(value: String) = when { value.isEmpty() -> "Should not be empty" value.length < 5 -> "Too short" else -> "Correct" } fun main() { println(commentValue("")) // Should not be empty println(commentValue("ABC")) // Too short println(commentValue("ABCDEF")) // Correct }   You are asked to re-write the code to restrict commentValue to only two values (e.g. Empty or Correct)? What is the proper way to seal commentValue to only these two values.

Microsoft Visual C#
7th Edition
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Joyce, Farrell.
Chapter8: Advanced Method Concepts
Section: Chapter Questions
Problem 8RQ
icon
Related questions
Question

Suppose some written the following Kotlin function to test the comments length style:

fun commentValue(value: String) = when {

value.isEmpty() -> "Should not be empty"

value.length < 5 -> "Too short"
else -> "Correct"

}

fun main() {
println(commentValue("")) // Should not be empty
println(commentValue("ABC")) // Too short
println(commentValue("ABCDEF")) // Correct

}

 

You are asked to re-write the code to restrict commentValue to only two values (e.g. Empty or Correct)? What is the proper way to seal commentValue to only these two values.

Expert Solution
steps

Step by step

Solved in 3 steps

Blurred answer
Knowledge Booster
JQuery and Javascript
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,