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