using System.Collections.Generic; namespace Semmle.Util { public static class Enumerators { /// /// Create an enumerable with a single element. /// /// /// The type of the enumerble/element. /// The element. /// An enumerable containing a single element. public static IEnumerable Singleton(T t) { yield return t; } } }