Skip to content
DeveloperMemos

Using Lesser Than or Greater Than in a Swift switch Statement

Swift, Programming, Switch Statement2 min read

In the world of Swift programming, the switch statement stands as a versatile tool for handling various conditions and scenarios. Often, its flexibility is not just limited to equality checks. By incorporating the lesser than (<) and greater than (>) operators, one can enhance the capabilities of a switch statement to address a broader range of situations. This article delves into leveraging these comparison operators within Swift switch statements to manage diverse cases effectively.

The Basics of a Switch Statement

Before diving into the intricacies of using lesser than or greater than in a switch statement, let's revisit the fundamentals. The switch statement allows developers to examine the value of a given variable or expression against multiple possible matching patterns. Each pattern is compared with the value until a match is found, executing the associated block of code.

1let number = 5
2
3switch number {
4case 0:
5 print("It's zero")
6case 1...5:
7 print("It's between 1 and 5")
8default:
9 print("It's something else")
10}

In this example, the switch statement evaluates the variable number and executes the corresponding code based on the matching case. Traditionally, these cases have relied on equality checks, but the switch statement can be more dynamic by employing comparative operators like lesser than and greater than.

Introducing Lesser Than and Greater Than

Including lesser than and greater than comparisons within a switch statement enables developers to handle a wider scope of scenarios. This approach proves particularly useful when dealing with ranges or specific boundaries, offering a more expressive way to manage different inputs.

Using Lesser Than (<)

Consider a scenario where your app needs to categorize items based on their sizes. You might want to group them into small, medium, and large categories. Here's how you could achieve this using the lesser than operator:

1let itemSize = 12
2
3switch itemSize {
4case ..<10:
5 print("Small")
6case 10..<20:
7 print("Medium")
8default:
9 print("Large")
10}

In this example, the switch statement utilizes the lesser than operator to determine the size category for the given itemSize. The ..< notation signifies a range that includes values less than 10 or falls between 10 and 20, allowing for concise and expressive case definitions.

Utilizing Greater Than (>)

Similarly, the greater than comparison enhances the switch statement's capability to accommodate larger values or extended ranges. Let's consider a simple example of grading students based on test scores:

1let score = 85
2
3switch score {
4case 0..<60:
5 print("Fail")
6case 60..<75:
7 print("Pass")
8case 75...100:
9 print("Excellent")
10default:
11 print("Invalid score")
12}

In this instance, the switch statement employs the greater than operator to assign grades according to the student's test score. Ranges defined with the ..< and ... operators provide clear distinctions between failing, passing, and excellent performance.

Wrapping Up

Incorporating lesser than and greater than comparisons within Swift switch statements significantly expands their utility. By utilizing these operators, developers can better express the logic of their code and handle a broader spectrum of cases with clarity and precision.


In summary, the ability to leverage lesser than and greater than within switch statements adds a layer of sophistication to Swift programming, enabling more nuanced condition-handling scenarios. Embracing these techniques allows for concise, readable, and efficient code, empowering developers to tackle diverse situations effectively.