# Code Smell 220 - Return Tuple

> TL;DR: Don't return multiple values. 

# Problems

- [Coupling](https://maximilianocontieri.com/coupling-the-one-and-only-software-design-problem)

- Missing Abstraction

- Readability

- Extensibility

# Solutions

1. Create a return object grouping the tuple

2. Reify it into an object with cohesion and behavior (not a [DTO](https://maximilianocontieri.com/code-smell-40-dtos) or [Dictionary](https://maximilianocontieri.com/code-smell-27-associative-arrays))

3. Look for the object in the real world using the [MAPPER](https://maximilianocontieri.com/what-is-wrong-with-software)

4. try to return void and delegate the solution to the modified object avoiding [accidental mutations](https://maximilianocontieri.com/the-evil-powers-of-mutants)

# Context

A function returning multiple values in languages that allow it is a problem.

Developers can use this hack to avoid reifying concepts.

Some languages are: Javascript, Go, Lua, Matlab, PHP, Python, Rust, and Swift

# Sample Code

## Wrong

[Gist Url]: # (https://gist.github.com/mcsee/d7cb1ea13ceb86ad1c087e2a52926c89)
```swift
func getNameAndAge() -> (String, Int) {
    let name = "John"
    let age = 30
    return (name, age)
}

```

## Right

[Gist Url]: # (https://gist.github.com/mcsee/e6db8dfa30b45043ff6a187ba14be10a)
```swift
struct PeopleProfile {
    let name: String
    let age: Int
}

// We reify the PeopleProfile object
func getNameAndAge() -> PeopleProfile {
    let name = "John"
    let age = 30
    let profile = PeopleProfile(name: name, age: age)
    return profile
}
```

# Detection

[X] Automatic 

This is a language smell. 

We can tell our linters to warn us.

# Tags

- Coupling

# Conclusion

This is yet another language feature that hinders clean code and blinds us from seeing missing abstractions in the [Bijection](https://maximilianocontieri.com/the-one-and-only-software-design-principle).

# Relations

%[https://maximilianocontieri.com/code-smell-10-too-many-arguments]

%[https://maximilianocontieri.com/code-smell-122-primitive-obsession]

%[https://maximilianocontieri.com/code-smell-40-dtos]

%[https://maximilianocontieri.com/code-smell-27-associative-arrays]

# More Info

%[https://learn.microsoft.com/en-us/dotnet/api/system.valuetuple-2?view=net-7.0]

%[https://www.geeksforgeeks.org/namedtuple-in-python/]

# Disclaimer

Code Smells are my [opinion](https://maximilianocontieri.com/i-wrote-more-than-90-articles-on-2021-here-is-what-i-learned).

# Credits

Photo by [Edgar Soto](https://unsplash.com/@edgardo1987) on [Unsplash](https://unsplash.com/photos/1HIKnKtXEU0)
    
* * *

> By relieving the brain of all unnecessary work, a good notation sets it free to concentrate on more advanced problems, and in effect increases the mental power of the race. Before the introduction of the Arabic notation, multiplication was difficult, and division even of integers called into play the highest mathematical faculties. Our modern power of easy reckoning with decimal fractions is the almost miraculous result of the gradual discovery of a perfect notation.

_Alfred North Whitehead_

%[https://maximilianocontieri.com/software-engineering-great-quotes]

* * *

This article is part of the CodeSmell Series.

%[https://maximilianocontieri.com/how-to-find-the-stinky-parts-of-your-code]
