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:
parent
dc3b6659f5
commit
021695a2a1
2 changed files with 413 additions and 0 deletions
46
SWIG/Examples/test-suite/perl5/li_std_list.i
Normal file
46
SWIG/Examples/test-suite/perl5/li_std_list.i
Normal 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); }
|
||||
};
|
||||
%}
|
||||
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue