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