Logo

Programming-Idioms

  • C#
  • Obj-c
@import Foundation;
[NSSet setWithArray:x].allObjects

Often, the set can be used directly without a need to create an array by the allObjects message. Original order is not preserved
using System.Collections.Generic;
using System.Linq;
var uniques = x.Distinct().ToList();
(distinct x)

New implementation...
< >
programming-idioms.org