repo.or.cz
/
prop.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
typename fix
[prop.git]
/
prop-src
/
list.ph
blob
9a9ca5879894dd4798b8e8e99229e76c48ede8aa
1
#ifndef list_operations_h
2
#define list_operations_h
3
4
#include "basics.ph"
5
6
template <class T> int length (List<T>);
7
template <class T> List<T> append (List<T>, List<T>);
8
template <class T> List<T> rev (List<T>);
9
10
#endif