Swift Set shuffled()

The shuffled() method shuffles all the elements of a set.

Example

var numbers: Set = [1, 2, 3, 4, 5]

// shuffled elements of numbers var result = numbers.shuffled()
print(result) // Output: [ 5, 1, 2, 4, 3 ]

shuffled() Syntax

The syntax of the set shuffled() method is:

set.shuffled()

Here, set is an object of the set class.


shuffled() Parameters

The shuffled() method doesn't take any parameters.


shuffled() Return Value

The shuffled() method returns a shuffled array.


Example: Swift set shuffled()

var languages: Set = ["Swift", "C", "Java"]

print("Original: ", languages)

// shuffle elements of languages var result = languages.shuffled()
print("Shuffled: ", result)

Output

Original:  ["C", "Java", "Swift"]
Shuffled:  ["Swift", "Java", "C"]

Here, we have used the shuffled() method to shuffle the elements of the languages set.

Did you find this article helpful?

Your builder path starts here. Builders don't just know how to code, they create solutions that matter.

Escape tutorial hell and ship real projects.

Try Programiz PRO
  • Real-World Projects
  • On-Demand Learning
  • AI Mentor
  • Builder Community