Skip to content

dacap/format

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Format Library

Copyright (C) 2016 David Capello

Build Status MIT Licensed

Example:

#include <iostream>
#include "format.h"

int main() {
  std::cout << format::string("{1}*{1} {0} {2}", "is", 4, 16) << "\n";
}

Prints:

4*4 is 16

Format one value

Example:

#include <iostream>
#include "format.h"

int main() {
  std::string out;
  format::append_value(out, 32);

  std::cout << out << "+" << out << " = "
            << format::value(64) << "\n";
}

Prints:

32*32 = 64

Tested Compilers

  • Visual Studio 2015
  • Xcode 7.3.1 (-std=c++11)
  • GCC 4.8.4 (-std=c++11)

About

Experimental C++11 type-safe sprintf like functionality

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors