Logo

Programming-Idioms

  • Haskell
  • Kotlin

Idiom #126 Multiple return values

Write a function foo that returns a string and a boolean value.

fun foo() : Pair<String, Boolean> = Pair(5, true)

fun useFoo() {
  val a, b = foo()
}
foo :: (String, Bool)   -- optional signature
foo = ("String", True)

Haskell supports tuples natively.
#include <stdbool.h>
typedef struct {
    const char * const a;
    const bool b;
} RetStringBool;

RetStringBool foo() {
    return (RetStringBool) {.a = "Hello", .b = true};
}

New implementation...
< >
MLKo