public string ToString(ContainerItem.Mask <bool>?printMask = null) { var fg = new FileGeneration(); ToString(fg, printMask); return(fg.ToString()); }
public Mask <R> Translate <R>(Func <TItem, R> eval) { var ret = new ContainerItem.Mask <R>(); this.Translate_InternalFill(ret, eval); return(ret); }
public void ToString(FileGeneration fg, ContainerItem.Mask <bool>?printMask = null) { fg.AppendLine($"{nameof(ContainerItem.Mask<TItem>)} =>"); fg.AppendLine("["); using (new DepthWrapper(fg)) { if (printMask?.Item ?? true) { fg.AppendItem(Item, "Item"); } if (printMask?.Count ?? true) { fg.AppendItem(Count, "Count"); } } fg.AppendLine("]"); }