public string ToString(SkillData.Mask <bool>?printMask = null) { var fg = new FileGeneration(); ToString(fg, printMask); return(fg.ToString()); }
public void ToString(FileGeneration fg, SkillData.Mask <bool>?printMask = null) { fg.AppendLine($"{nameof(SkillData.Mask<TItem>)} =>"); fg.AppendLine("["); using (new DepthWrapper(fg)) { if (printMask?.Action ?? true) { fg.AppendItem(Action, "Action"); } if (printMask?.Attribute ?? true) { fg.AppendItem(Attribute, "Attribute"); } if (printMask?.Specialization ?? true) { fg.AppendItem(Specialization, "Specialization"); } if (printMask?.UseValueFirst ?? true) { fg.AppendItem(UseValueFirst, "UseValueFirst"); } if (printMask?.UseValueSecond ?? true) { fg.AppendItem(UseValueSecond, "UseValueSecond"); } } fg.AppendLine("]"); }
public Mask <R> Translate <R>(Func <TItem, R> eval) { var ret = new SkillData.Mask <R>(); this.Translate_InternalFill(ret, eval); return(ret); }