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

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

                this.Translate_InternalFill(ret, eval);
                return(ret);
            }
Exemple #3
0
 public void ToString(FileGeneration fg, LocationCellEnablePoint.Mask <bool>?printMask = null)
 {
     fg.AppendLine($"{nameof(LocationCellEnablePoint.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?.Grid ?? true)
         {
             fg.AppendItem(Grid, "Grid");
         }
     }
     fg.AppendLine("]");
 }