Algorithms Library Toolkit
A toolkit for algorithms, especially for algorithms on formal languages
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Concepts
UnsignedLong.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 < unsigned long > {
16 static unsigned long parse ( ext::istream & input );
17 static bool first ( ext::istream & input );
18 static void compose ( ext::ostream & output, unsigned long primitive );
19};
20
21} /* namespace core */
22
Definition: istream.h:32
Definition: ostream.h:14
Definition: normalize.hpp:10
Definition: PrimitiveFromStringLexer.cpp:8
static unsigned long parse(ext::istream &input)
static bool first(ext::istream &input)
static void compose(ext::ostream &output, unsigned long primitive)
Definition: stringApi.hpp:26