public string ToString(TeleportDestination.Mask <bool>?printMask = null) { var fg = new FileGeneration(); ToString(fg, printMask); return(fg.ToString()); }
public Mask <R> Translate <R>(Func <TItem, R> eval) { var ret = new TeleportDestination.Mask <R>(); this.Translate_InternalFill(ret, eval); return(ret); }
public void ToString(FileGeneration fg, TeleportDestination.Mask <bool>?printMask = null) { fg.AppendLine($"{nameof(TeleportDestination.Mask<TItem>)} =>"); fg.AppendLine("["); using (new DepthWrapper(fg)) { if (printMask?.Destination ?? true) { fg.AppendItem(Destination, "Destination"); } if (printMask?.Position ?? true) { fg.AppendItem(Position, "Position"); } if (printMask?.Rotation ?? true) { fg.AppendItem(Rotation, "Rotation"); } } fg.AppendLine("]"); }