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