4 lines
116 B
Plaintext
4 lines
116 B
Plaintext
// comparator function
|
|
channel.of( "hello", "hi", "hey" )
|
|
.max { a, b -> a.length() <=> b.length() }
|
|
.view() |