Back to Posts

Why we should use functional programming with Kotlin?

Posted in Programming

Recently I made a post about why we should use functional programming, but since I’m trying now to learn Kotlin, I like to update my previous entry with examples written in Kotlin.

And as before, this is not going to be about qualities, neither comparison with Java, this is about code, to show how we could solve solutions with it.

All the code posted here is available in this git repo and you could follow the tests incrementally to understand this concepts.

note : I’m not an expert in Kotlin and probably many things that I do here are not how you should code it, this is just for demonstration porpoises.

To simplify the code it will start from where we end in the previous post, with this Java class:

  static class Wrapper<Type> {
      private final Type value;

      private Wrapper(final Type value) {
          this.value = value;
      }

      static <AnyType> Wrapper<AnyType> From(final AnyType value) {
          return new Wrapper<>(value);
      }

      static <AnyType> Wrapper<AnyType> From(final Supplier<AnyType> supplier) {
          return From(supplier.get());
      }

      <OtherType> Wrapper<OtherType> pipe(final Function<Type, OtherType> transformer) {
          return From(transformer.apply(value));
      }

      void pipe(final Consumer<Type> consumer) {
          consumer.accept(value);
      }
  }

Our functions:

  private int random() {
      Random rand = new Random();

      return rand.nextInt();
  }

  private String reverse(String value) {
      return new StringBuffer(value).reverse().toString();
  }

  private void print(Object value) {
      System.out.println(value.toString());
  }

  private int square(final int value) {
      return (int) Math.pow(value, 2);
  }

  private String text(final int value) {
      return Integer.toString(value);
  }

And how we use it:

  From(12545)
      .pipe(this::square)
      .pipe(this::text)
      .pipe(this::reverse)
      .pipe(this::print);

Java ‘like’ approach

A fist approach with a direct implementation from Java:

  class Wrapper<out Type : Any>(val value: Type) {
      fun <OtherType : Any> pipe(compose: (Type) -> OtherType) =
        Wrapper(compose.invoke(this.value))
  }
  fun <OtherType : Any> From(value: OtherType): Wrapper<OtherType> = Wrapper(value)

Our functions:

  fun <Type : Any> print(value: Type) = println(value)
  fun <Type : Any> text(value: Type) = value.toString()
  fun <Type : Any> reverse(value: Type) = value.toString().reversed()
  fun square(value: Int) = value.times(value)

And how to use it:

  From(12345)
      .pipe(this::reverse)
      .pipe(this::print)

  From("dlrow olleh")
      .pipe(this::reverse)
      .pipe(this::print)

  From(12545)
      .pipe(this::square)
      .pipe(this::text)
      .pipe(this::reverse)
      .pipe(this::print)

This is very look like to our Java implementation but shorter due some of the benefits from Kotlin, like we only need a pipe function since every function in Kotlin returns a value Unit (equivalent to void) where there is not output.

However I think we could improve it, so let’s do it so.

Who need a wrapper class?

Let’s do just a pipe function attached to any type:

  fun <Type : Any, OtherType : Any> Type.pipe(compose: (Type) -> OtherType) =
    compose.invoke(this)

We don’t need to change our functions, so the example is:

  12545
      .pipe(this::reverse)
      .pipe(this::print)

  "dlrow olleh"
      .pipe(this::reverse)
      .pipe(this::print)

  12545
      .pipe(this::square)
      .pipe(this::text)
      .pipe(this::reverse)
      .pipe(this::print)

This is nicer, and we get rid of the wrapper class because Kotlin extensions functions, but we could take another approach.

Pipe as an operator!

So let’s change our pipe function to be an operator:

  infix fun <Type : Any, OtherType : Any> Type.pipe(compose: (Type) -> OtherType) =
    compose.invoke(this)

Now this could be use like this:

  12545 pipe this::reverse pipe this::print

  "dlrow olleh" pipe this::reverse pipe this::print

  12545 pipe this::square pipe this::text pipe this::reverse pipe this::print

Interesting but we could even do a step further we a couple of changes

Semantics matters

Let’s create another infix, that actually use the previous one:

  infix fun <Type : Any, OtherType : Any> Type.pipe(compose: (Type) -> OtherType) =
    compose.invoke(this)

  infix fun <Type : Any, OtherType : Any> Type.and(compose: (Type) -> OtherType) =
    this pipe compose

And change our functions to be part of a companion object:

  companion object Do {
    fun <Type : Any> print(value: Type) = println(value)
    fun <Type : Any> text(value: Type) = value.toString()
    fun <Type : Any> reverse(value: Type) = value.toString().reversed()
    fun square(value: Int) = value.times(value)
  }

So now we could use them like this:

  12545 pipe Do::reverse and Do::print

  "dlrow olleh" pipe Do::reverse and Do::print

  12545 pipe Do::square and Do::text and Do::reverse and Do::print

I can understand that this whole operators things is not for everyone, neither to use for everything so we have one last way to do this that may be better.

Who need pipes? just connect things with normal Kotlin

No pipe functions, change our normal functions into extensions:

  fun <Type : Any> Type.print() = println(this)
  fun Int.square() = this.times(this)
  fun <Type : Any> Type.text() = this.toString()
  fun <Type : Any> Type.reverse() = this.toString().reversed()

So know the example is:

  12545.reverse().print()

  "dlrow olleh".reverse().print()

  12545.square().text().reverse().print()

Any of this examples will have the same qualities that we talk about before, small blocks that connect things, that can be unit tested and they could be use to simplify building complex functionality.

So to answer the main question: “Why we should use functional programming with Kotlin?”

So again, as I said in the previous post: Not because syntax, not because is trendy, just do it if you could find a useful piece of code that allow you to solve a problem in a way that make sense for you.

About Juan Medina
I'm just a normal geek that code all kind of stuff, from complex corporate applications to games.

Games, music, movies and traveling are my escape pods.

Read Next

Why we should use functional programming?