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

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