Skip to content

dacap/format

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 

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

No packages published