public string ToString(Cell.Mask <bool>?printMask = null) { var fg = new FileGeneration(); ToString(fg, printMask); return(fg.ToString()); }
public new Mask <R> Translate <R>(Func <TItem, R> eval) { var ret = new Cell.Mask <R>(); this.Translate_InternalFill(ret, eval); return(ret); }
public void ToString(FileGeneration fg, Cell.Mask <bool>?printMask = null) { fg.AppendLine($"{nameof(Cell.Mask<TItem>)} =>"); fg.AppendLine("["); using (new DepthWrapper(fg)) { } fg.AppendLine("]"); }
public static string ToString( this ICellGetter item, string?name = null, Cell.Mask <bool>?printMask = null) { return(((CellCommon)((ICellGetter)item).CommonInstance() !).ToString( item: item, name: name, printMask: printMask)); }
public static void ToString( this ICellGetter item, FileGeneration fg, string?name = null, Cell.Mask <bool>?printMask = null) { ((CellCommon)((ICellGetter)item).CommonInstance() !).ToString( item: item, fg: fg, name: name, printMask: printMask); }