I would call it ToInclude
var empty = new ImmutableList<string>();
var list1 = empty.ToInclude("Hello");
var list2 = list1.ToInclude("immutable");
var list3 = list2.ToInclude("word");
idiomatically (?)
var list = new ImmutableList<string>().ToInclude("Hello");
.ToInclude("immutable");
.ToInclude("word");
Works for the case you mentioned too.
var list = new ImmutableList<string>();list.ToInclude("foo");
var suite = new TestSuite<string, int>();suite.ToInclude(x => x.Length);
