fork download
  1. template < typename ...Args >
  2. static StringBase Format ( const StringBase& format, const Args... args ) {
  3. StringBase value = format;
  4. value.Reserve( format.Length () * 3 );
  5.  
  6. Table< const StringBase*, sizeof...(args) > argtable = {
  7. null, // Wat do?
  8. };
  9.  
  10. }
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty