Using _ to Omit Argument Labels in Swift Functions
📖 Scenario: Imagine you are creating a simple calculator app that adds two numbers. You want to make the function call easy and clean by omitting argument labels.
🎯 Goal: Build a Swift function that adds two numbers without requiring argument labels when calling it.
📋 What You'll Learn
Create a function named
add that takes two Int parameters without argument labels.Use
_ to omit argument labels in the function definition.Call the function with two numbers without labels.
Print the result of the addition.
💡 Why This Matters
🌍 Real World
Omitting argument labels makes function calls simpler and more natural, especially in small utility functions or when the meaning is clear from context.
💼 Career
Swift developers often use <code>_</code> to improve code readability and API design in iOS app development.
Progress0 / 4 steps