[ create a new paste ] login | about

jazzer

Name:
Email:
Site/Blog:
Location: Tokyo
Default language: C++
Favorite languages:
About:

Saved pastes by jazzer:

C++, pasted on Nov 7:
1
2
3
4
5
// find all possible ways to match a string using several boost::spirit parsers

#include <iostream>
#include <vector>
#include "boost/spirit/core.hpp"
...
view (40 lines, 8 lines of output)
C++, pasted on Nov 7:
1
2
3
4
#include "boost/function.hpp"
#include <iostream>

typedef boost::function<int(int)> IntIntFunc;
...
view (16 lines, 10 lines of output)