You need to return more than one object
TL;DR: Don't return multiple values.
-
Missing Abstraction
-
Readability
-
Extensibility
-
Create a return object grouping the tuple
-
Reify it into an object with cohesion and behavior (neither a DTO nor a Dictionary)
-
Look for the object in the real world using the MAPPER
-
Try to return void and delegate the solution to the modified object avoiding accidental mutations
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: C#, Javascript, Go, Lua, Matlab, PHP, Python, Rust, and Swift
func getNameAndAge() -> (String, Int) {
let name = "John"
let age = 30
return (name, age)
}
struct PeopleProfile {
let name: String
let age: Int
}
// You reify the PeopleProfile object
func getNameAndAge() -> PeopleProfile {
let name = "John"
let age = 30
let profile = PeopleProfile(name: name, age: age)
return profile
}
[X] Automatic
This is a language smell.
We can tell our linters to warn us.
- Coupling
This is yet another language feature that hinders clean code and blinds us from seeing missing abstractions in the Bijection.
Code Smell 10 - Too Many Arguments
Code Smell 122 - Primitive Obsession
Code Smell 27 - Associative Arrays
Code Smells are my opinion.
Photo by Edgar Soto on Unsplash
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
Software Engineering Great Quotes
This article is part of the CodeSmell Series.