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

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

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