Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • D

Idiom #126 Multiple return values

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

import std.typecons;
auto foo()
{
    return tuple("theString", true);
}

auto infers the return type, so it's Tuple!(string,bool).
#include <stdbool.h>
typedef struct {
    const char * const a;
    const bool b;
} RetStringBool;

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

New implementation...
< >
MLKo