public string ToString(AnimationSoundTagSet.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 AnimationSoundTagSet.Mask <R>(); this.Translate_InternalFill(ret, eval); return(ret); }
public void ToString(FileGeneration fg, AnimationSoundTagSet.Mask <bool>?printMask = null) { fg.AppendLine($"{nameof(AnimationSoundTagSet.Mask<TItem>)} =>"); fg.AppendLine("["); using (new DepthWrapper(fg)) { } fg.AppendLine("]"); }
public static string ToString( this IAnimationSoundTagSetGetter item, string?name = null, AnimationSoundTagSet.Mask <bool>?printMask = null) { return(((AnimationSoundTagSetCommon)((IAnimationSoundTagSetGetter)item).CommonInstance() !).ToString( item: item, name: name, printMask: printMask)); }
public static void ToString( this IAnimationSoundTagSetGetter item, FileGeneration fg, string?name = null, AnimationSoundTagSet.Mask <bool>?printMask = null) { ((AnimationSoundTagSetCommon)((IAnimationSoundTagSetGetter)item).CommonInstance() !).ToString( item: item, fg: fg, name: name, printMask: printMask); }