Mevcut sıra operatörlerinden kesinlikle böyle bir cihaz oluşturabilseniz de, bu durumda bunu özel bir sıra operatörü olarak yazmaya meyilli olurum. Gibi bir şey:
// Returns "other" if the list is empty.
// Returns "other" if the list is non-empty and there are two different elements.
// Returns the element of the list if it is non-empty and all elements are the same.
public static int Unanimous(this IEnumerable<int> sequence, int other)
{
int? first = null;
foreach(var item in sequence)
{
if (first == null)
first = item;
else if (first.Value != item)
return other;
}
return first ?? other;
}
Bu oldukça açık, kısadır, tüm vakaları kapsar ve gereksiz yere sekansın fazladan yinelemelerini oluşturmaz.
Bunu, üzerinde çalışan genel bir yöntem haline getirmek IEnumerable<T>
, bir egzersiz olarak bırakılmıştır. :-)