public string ToString(LeveledSpell.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 LeveledSpell.Mask <R>();

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