Hello, i`m trying to use kotlin to improve readabi...
# getting-started
p
Hello, i`m trying to use kotlin to improve readability upon our old java code I would like to know if there is something like the pipe operator from swift/F#/elixir, or if it can be achieved In elixir i can do something like this
Copy code
returnAHuman("name of human")
|> saveAHumanReturningABall
|> kickTheBallReturningABall
|> keepTheBallReturnAPet
|> loveThePet
Basically every method on the chain is receiving as parameter the value of the one before it I`m trying to have something like this in kotlin, is it feasible?