示例#1
0
            public string ToString(LocationCellUnique.Mask <bool>?printMask = null)
            {
                var fg = new FileGeneration();

                ToString(fg, printMask);
                return(fg.ToString());
            }
示例#2
0
            public Mask <R> Translate <R>(Func <TItem, R> eval)
            {
                var ret = new LocationCellUnique.Mask <R>();

                this.Translate_InternalFill(ret, eval);
                return(ret);
            }
示例#3
0
 public void ToString(FileGeneration fg, LocationCellUnique.Mask <bool>?printMask = null)
 {
     fg.AppendLine($"{nameof(LocationCellUnique.Mask<TItem>)} =>");
     fg.AppendLine("[");
     using (new DepthWrapper(fg))
     {
         if (printMask?.Actor ?? true)
         {
             fg.AppendItem(Actor, "Actor");
         }
         if (printMask?.Ref ?? true)
         {
             fg.AppendItem(Ref, "Ref");
         }
         if (printMask?.Location ?? true)
         {
             fg.AppendItem(Location, "Location");
         }
     }
     fg.AppendLine("]");
 }