public string ToString(LocationCellEnablePoint.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 LocationCellEnablePoint.Mask <R>(); this.Translate_InternalFill(ret, eval); return(ret); }
public void ToString(FileGeneration fg, LocationCellEnablePoint.Mask <bool>?printMask = null) { fg.AppendLine($"{nameof(LocationCellEnablePoint.Mask<TItem>)} =>"); fg.AppendLine("["); using (new DepthWrapper(fg)) { if (printMask?.Actor ?? true) { fg.AppendItem(Actor, "Actor"); } if (printMask?.Ref ?? true) { fg.AppendItem(Ref, "Ref"); } if (printMask?.Grid ?? true) { fg.AppendItem(Grid, "Grid"); } } fg.AppendLine("]"); }