Algorithms Library Toolkit
A toolkit for algorithms, especially for algorithms on formal languages
Integer.h
Go to the documentation of this file.
1
6#pragma once
7
8#include <core/stringApi.hpp>
9
11
12namespace core {
13
14template < >
15struct stringApi < int > {
16 static int parse ( ext::istream & input );
17 static bool first ( ext::istream & input );
18 static void compose ( ext::ostream & output, int primitive );
19};
20
21} /* namespace core */
22
Definition: istream.h:32
Definition: ostream.h:14
Definition: normalize.hpp:10
Definition: PrimitiveFromStringLexer.cpp:8
Definition: stringApi.hpp:26