add std_list (lluisp #1033399)

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@6671 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2004-11-05 02:32:26 +00:00
commit 021695a2a1
2 changed files with 413 additions and 0 deletions

View file

@ -0,0 +1,46 @@
%module li_std_list
%include "std_list.i"
%{
#include <algorithm>
#include <functional>
#include <numeric>
%}
namespace std {
%template(IntList) list<int>;
}
%template(DoubleList) std::list<double>;
%inline %{
typedef float Real;
%}
namespace std {
%template(RealList) list<Real>;
}
%inline %{
double average(std::list<int> v) {
return std::accumulate(v.begin(),v.end(),0.0)/v.size();
}
void halve_in_place(std::list<double>& v) {
std::transform(v.begin(),v.end(),v.begin(),
std::bind2nd(std::divides<double>(),2.0));
}
struct Struct {
double num;
Struct() : num(0.0) {}
Struct(double d) : num(d) {}
// bool operator==(const Struct &other) { return (num == other.num); }
};
%}