Ejemplo n.º 1
0
 public static void PrintFormatted(
     StringFormatterSiteStorage /*!*/ storage,
     ConversionStorage <MutableString> /*!*/ stringCast,
     BinaryOpStorage /*!*/ writeStorage,
     StringIO /*!*/ self, [DefaultProtocol, NotNull] MutableString /*!*/ format, params object[] /*!*/ args)
 {
     PrintOps.PrintFormatted(storage, stringCast, writeStorage, self, format, args);
 }
Ejemplo n.º 2
0
 public static void Puts(BinaryOpStorage /*!*/ writeStorage, ConversionStorage <MutableString> /*!*/ tosConversion,
                         ConversionStorage <IList> /*!*/ tryToAry, object self, params object[] /*!*/ vals)
 {
     PrintOps.Puts(writeStorage, tosConversion, tryToAry, self, vals);
 }
Ejemplo n.º 3
0
 public static void Puts(BinaryOpStorage /*!*/ writeStorage, object self, [NotNull] MutableString /*!*/ str)
 {
     PrintOps.Puts(writeStorage, self, str);
 }
Ejemplo n.º 4
0
 public static void PutsEmptyLine(BinaryOpStorage /*!*/ writeStorage, object self)
 {
     PrintOps.PutsEmptyLine(writeStorage, self);
 }
Ejemplo n.º 5
0
 public static int Putc(BinaryOpStorage /*!*/ writeStorage, object self, [DefaultProtocol] int c)
 {
     return(PrintOps.Putc(writeStorage, self, c));
 }
Ejemplo n.º 6
0
 public static MutableString /*!*/ Putc(BinaryOpStorage /*!*/ writeStorage, object self, [NotNull] MutableString /*!*/ val)
 {
     return(PrintOps.Putc(writeStorage, self, val));
 }
Ejemplo n.º 7
0
 public static object /*!*/ Output(BinaryOpStorage /*!*/ writeStorage, object /*!*/ self, object value)
 {
     return(PrintOps.Output(writeStorage, self, value));
 }