Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
- C
- Clojure
- C++
- C++
- C#
- D
- Dart
- Elixir
- Fortran
- Go
- Haskell
- JS
- JS
- Java
- Java
- Java
- Java
- Java
- Kotlin
- Lisp
- Lua
- PHP
- Pascal
- Perl
- Python
- Python
- Ruby
- Rust
- Scala
- Scheme
- Scheme
(defn foo
[]
["bar" true])
Make sure to invoke as a function call
so: _(foo)
so: _(foo)
std::tuple<std::string, bool> foo() {
return std::make_tuple("someString", true);
}
c++ 11
public Tuple<string, bool> foo_PreCSharp7()
{
// Only accessed via .Item1 and .Item2
return new Tuple<string, bool>("string", true);
}
public (string, bool) foo_CSharp7UnnamedTuples()
{
// Only accessed via .Item1 and .Item2
return ("string", true);
}
public (string NamedStringArg, bool NamedBooleanArg) foo_CSharp7()
{
// Can be accessed via .NamedStringArg or .NamedBooleanArg
return ("string", true);
}
C# 7 Introduced several Tuple changes which increase the complexity and variation of syntax.
auto foo()
{
return tuple("theString", true);
}
auto infers the return type, so it's Tuple!(string,bool).
foo() => ['a string', true];
Dart does not yet as of version 2.16 supports tuples or records.
def foo, do: {"bar", true}
subroutine foo(c, b)
character(len=:), allocatable, intent(out) :: c
logical, intent(out) :: b
c = 'string'
b = .false.
end subroutine foo
foo :: (String, Bool) -- optional signature
foo = ("String", True)
Haskell supports tuples natively.
const foo = () => ['string', true];
const foo = () => ({string: 'string', bool: true})
Usage:
let {string: a, bool: b} = foo ()
let {string: a, bool: b} = foo ()
interface F<A, B> { Entry<A, B> get(); }
F<String, Boolean> foo
= () -> entry("abc", true);
static Object[] returnAnything() {
return new Object[]{"a string", true};
}
public static void main (String[] args) {
Object[] array = returnAnything();
System.out.println(array[0]);
System.out.println(array[1]);
}
Object[] foo() {
return new Object[] { "abc", true };
}
record Tuple(Object ... a) {}
Tuple foo() {
return new Tuple("abc", true);
}
Entry<String, Boolean> foo() {
return entry("abc", true);
}
fun foo() : Pair<String, Boolean> = Pair(5, true)
fun useFoo() {
val a, b = foo()
}
(defun foo () (format t "bar") t)
function foo()
return "bar", false
end
Lua functions may return multiple values
type
TFooRec = record
S: String;
B: Boolean;
end;
function Foo: TFooRec;
begin
Result.S := 'Some string';
Result.B := False;
end;
While in Pascal a function can return only one result, the result can be of any type, so for this example we return a record that contains both a string and a boolean.
sub foo {
return "bar", 1;
}
def foo():
return 'string', True
foo = lambda: ('abc', True)
def foo
string, boolean = "bar", false
[string, boolean]
end
fn foo() -> (String, bool) {
(String::from("bar"), true)
}
def foo(): (String, Boolean) = ("bar", true)
(define (foo) (cons "bar" false))
(define (foo)
(values "foo" #t))