/// <summary>Creates a new immutable list builder.</summary>
 /// <returns>The immutable collection builder.</returns>
 /// <typeparam name="T">The type of items stored by the collection.</typeparam>
 public static ImmutableList <T> .Builder CreateBuilder <T>()
 {
     return(ImmutableList.Create <T>().ToBuilder());
 }