summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2017-02-10 19:49:10 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2017-02-10 19:49:10 +0000
commitde6476f3213c3a5cc39c2feecebafc76a53b6cf2 (patch)
treeb7b31d27bd1dcc2bab039005e978320bae2f0daa
parentdee6b075a83468bacb39a1d9970d2c65f3e68d9b (diff)
parent16b583ec25ff34b152d919f41697229be7df9ece (diff)
downloadswig-de6476f3213c3a5cc39c2feecebafc76a53b6cf2.tar.gz
Merge branch 'tamuratak-fix_std_unordred'
* tamuratak-fix_std_unordred: Move cpp11_hash_tables test to Ruby makefile until other languages work Cosmetic changes in C++11 std_unordered support files [ruby] add tests for unordered containers. [ruby] support for std unordered containers. use equal_range instead of upper_bound. unordered containers do not have the upper_bound method. fix a %fragment argument. use %std_container_methods_without_reverse_iterators fix Lib/std/std unordered containers
-rw-r--r--Examples/test-suite/common.mk3
-rw-r--r--Examples/test-suite/cpp11_hash_tables.i32
-rw-r--r--Examples/test-suite/ruby/Makefile.in3
-rw-r--r--Examples/test-suite/ruby/cpp11_hash_tables_runme.rb44
-rw-r--r--Lib/ruby/std_multimap.i7
-rw-r--r--Lib/ruby/std_unordered_map.i83
-rw-r--r--Lib/ruby/std_unordered_multimap.i100
-rw-r--r--Lib/ruby/std_unordered_multiset.i48
-rw-r--r--Lib/ruby/std_unordered_set.i50
-rw-r--r--Lib/std/std_unordered_map.i24
-rw-r--r--Lib/std/std_unordered_multimap.i22
-rw-r--r--Lib/std/std_unordered_multiset.i20
-rw-r--r--Lib/std/std_unordered_set.i5
13 files changed, 376 insertions, 65 deletions
diff --git a/Examples/test-suite/common.mk b/Examples/test-suite/common.mk
index 8d97b4bf9..39d4f1fa6 100644
--- a/Examples/test-suite/common.mk
+++ b/Examples/test-suite/common.mk
@@ -534,7 +534,7 @@ CPP_TEST_CASES += \
wrapmacro
# C++11 test cases.
-CPP11_TEST_CASES = \
+CPP11_TEST_CASES += \
cpp11_alignment \
cpp11_alternate_function_syntax \
cpp11_constexpr \
@@ -572,7 +572,6 @@ CPP11_TEST_CASES = \
# Broken C++11 test cases.
CPP11_TEST_BROKEN = \
-# cpp11_hash_tables \ # not fully implemented yet
# cpp11_variadic_templates \ # Broken for some languages (such as Java)
# cpp11_reference_wrapper \ # No typemaps
diff --git a/Examples/test-suite/cpp11_hash_tables.i b/Examples/test-suite/cpp11_hash_tables.i
index 4f68cbac5..0c671aa5d 100644
--- a/Examples/test-suite/cpp11_hash_tables.i
+++ b/Examples/test-suite/cpp11_hash_tables.i
@@ -4,19 +4,27 @@
%inline %{
#include <set>
-//#include <map>
+#include <map>
#include <unordered_set>
-//#include <unordered_map>
+#include <unordered_map>
%}
%include "std_set.i"
-//%include "std_map.i"
+%include "std_multiset.i"
+%include "std_map.i"
+%include "std_multimap.i"
%include "std_unordered_set.i"
-//%include "std_unordered_map.i"
+%include "std_unordered_multiset.i"
+%include "std_unordered_map.i"
+%include "std_unordered_multimap.i"
%template (SetInt) std::set<int>;
-//%template (MapIntInt) std::map<int, int>;
+%template (MultiSetInt) std::multiset<int>;
+%template (MapIntInt) std::map<int, int>;
+%template (MultiMapIntInt) std::multimap<int, int>;
%template (UnorderedSetInt) std::unordered_set<int>;
-//%template (UnorderedMapIntInt) std::unordered_map<int, int>;
+%template (UnorderedMultiSetInt) std::unordered_multiset<int>;
+%template (UnorderedMapIntInt) std::unordered_map<int, int>;
+%template (UnorderedMultiMapIntInt) std::unordered_multimap<int, int>;
%inline %{
using namespace std;
@@ -25,19 +33,19 @@ class MyClass {
public:
set<int> getSet() { return _set; }
void addSet(int elt) { _set.insert(_set.begin(), elt); }
-// map<int, int> getMap() { return _map; }
-// void addMap(int elt1, int elt2) { _map.insert(make_pair(elt1, elt2)); }
+ map<int, int> getMap() { return _map; }
+ void addMap(int elt1, int elt2) { _map.insert(make_pair(elt1, elt2)); }
unordered_set<int> getUnorderedSet() { return _unordered_set; }
void addUnorderedSet(int elt) { _unordered_set.insert(_unordered_set.begin(), elt); }
-// unordered_map<int, int> getUnorderedMap() { return _unordered_map; }
-// void addUnorderedMap(int elt1, int elt2) { _unordered_map.insert(make_pair(elt1, elt2)); }
+ unordered_map<int, int> getUnorderedMap() { return _unordered_map; }
+ void addUnorderedMap(int elt1, int elt2) { _unordered_map.insert(make_pair(elt1, elt2)); }
private:
set<int> _set;
-// map<int, int> _map;
+ map<int, int> _map;
unordered_set<int> _unordered_set;
-// unordered_map<int, int> _unordered_map;
+ unordered_map<int, int> _unordered_map;
};
%}
diff --git a/Examples/test-suite/ruby/Makefile.in b/Examples/test-suite/ruby/Makefile.in
index d94ac7061..a127860b0 100644
--- a/Examples/test-suite/ruby/Makefile.in
+++ b/Examples/test-suite/ruby/Makefile.in
@@ -29,6 +29,9 @@ CPP_TEST_CASES = \
# ruby_li_std_speed
# stl_new
+CPP11_TEST_CASES = \
+ cpp11_hash_tables \
+
C_TEST_CASES += \
li_cstring \
ruby_manual_proxy \
diff --git a/Examples/test-suite/ruby/cpp11_hash_tables_runme.rb b/Examples/test-suite/ruby/cpp11_hash_tables_runme.rb
new file mode 100644
index 000000000..db910505e
--- /dev/null
+++ b/Examples/test-suite/ruby/cpp11_hash_tables_runme.rb
@@ -0,0 +1,44 @@
+require 'swig_assert'
+require 'cpp11_hash_tables'
+
+[Cpp11_hash_tables::MapIntInt.new({1=>7}),
+ Cpp11_hash_tables::MultiMapIntInt.new({1=>7}),
+ Cpp11_hash_tables::UnorderedMapIntInt.new({1=>7}),
+ Cpp11_hash_tables::UnorderedMultiMapIntInt.new({1=>7})].each{|x|
+ swig_assert_equal("x[1]", "7", binding)
+ swig_assert_equal("x[2]", "nil", binding)
+ x[2] = 9
+ swig_assert_equal("x[2]", "9", binding)
+ x.delete(2)
+ swig_assert_equal("x[2]", "nil", binding)
+ swig_assert_equal("x.empty?", "false", binding)
+ x.delete(1)
+ swig_assert_equal("x.empty?", "true", binding)
+ swig_assert_equal("x.include?(1)", "false", binding)
+}
+
+[Cpp11_hash_tables::MultiMapIntInt.new({1=>7}),
+ Cpp11_hash_tables::UnorderedMultiMapIntInt.new({1=>7})].each{|x|
+ x[1] = 9
+ swig_assert_equal("x[1].sort", "[7,9]", binding)
+}
+
+[Cpp11_hash_tables::SetInt.new([1]),
+ Cpp11_hash_tables::MultiSetInt.new([1]),
+ Cpp11_hash_tables::UnorderedSetInt.new([1]),
+ Cpp11_hash_tables::UnorderedMultiSetInt.new([1])].each{|x|
+ swig_assert_equal("x.include?(1)", "true", binding)
+ swig_assert_equal("x.include?(2)", "false", binding)
+ x << 2
+ swig_assert_equal("x.include?(2)", "true", binding)
+ x.erase(2)
+ swig_assert_equal("x.empty?", "false", binding)
+ x.erase(1)
+ swig_assert_equal("x.empty?", "true", binding)
+}
+
+[Cpp11_hash_tables::MultiSetInt.new([1]),
+ Cpp11_hash_tables::UnorderedMultiSetInt.new([1])].each{|x|
+ x << 1
+ swig_assert_equal("x.count(1)", "2", binding)
+}
diff --git a/Lib/ruby/std_multimap.i b/Lib/ruby/std_multimap.i
index 3e06ee12c..762a87653 100644
--- a/Lib/ruby/std_multimap.i
+++ b/Lib/ruby/std_multimap.i
@@ -90,12 +90,11 @@
%extend {
VALUE __getitem__(const key_type& key) const {
- MultiMap::const_iterator i = self->find(key);
- if ( i != self->end() )
+ std::pair<MultiMap::const_iterator, MultiMap::const_iterator > r = $self->equal_range(key);
+ if ( r.first != r.second )
{
- MultiMap::const_iterator e = $self->upper_bound(key);
VALUE ary = rb_ary_new();
- for ( ; i != e; ++i )
+ for (MultiMap::const_iterator i = r.first ; i != r.second; ++i )
{
rb_ary_push( ary, swig::from<MultiMap::mapped_type>( i->second ) );
}
diff --git a/Lib/ruby/std_unordered_map.i b/Lib/ruby/std_unordered_map.i
new file mode 100644
index 000000000..b2cef6520
--- /dev/null
+++ b/Lib/ruby/std_unordered_map.i
@@ -0,0 +1,83 @@
+//
+// Maps
+//
+%include <std_map.i>
+
+%fragment("StdUnorderedMapTraits","header",fragment="StdMapCommonTraits")
+{
+ namespace swig {
+ template <class RubySeq, class K, class T >
+ inline void
+ assign(const RubySeq& rubyseq, std::unordered_map<K,T > *map) {
+ typedef typename std::unordered_map<K,T>::value_type value_type;
+ typename RubySeq::const_iterator it = rubyseq.begin();
+ for (;it != rubyseq.end(); ++it) {
+ map->insert(value_type(it->first, it->second));
+ }
+ }
+
+ template <class K, class T>
+ struct traits_asptr<std::unordered_map<K,T> > {
+ typedef std::unordered_map<K,T> map_type;
+ static int asptr(VALUE obj, map_type **val) {
+ int res = SWIG_ERROR;
+ if (TYPE(obj) == T_HASH) {
+ static ID id_to_a = rb_intern("to_a");
+ VALUE items = rb_funcall(obj, id_to_a, 0);
+ res = traits_asptr_stdseq<std::unordered_map<K,T>, std::pair<K, T> >::asptr(items, val);
+ } else {
+ map_type *p;
+ swig_type_info *descriptor = swig::type_info<map_type>();
+ res = descriptor ? SWIG_ConvertPtr(obj, (void **)&p, descriptor, 0) : SWIG_ERROR;
+ if (SWIG_IsOK(res) && val) *val = p;
+ }
+ return res;
+ }
+ };
+
+ template <class K, class T >
+ struct traits_from<std::unordered_map<K,T> > {
+ typedef std::unordered_map<K,T> map_type;
+ typedef typename map_type::const_iterator const_iterator;
+ typedef typename map_type::size_type size_type;
+
+ static VALUE from(const map_type& map) {
+ swig_type_info *desc = swig::type_info<map_type>();
+ if (desc && desc->clientdata) {
+ return SWIG_NewPointerObj(new map_type(map), desc, SWIG_POINTER_OWN);
+ } else {
+ size_type size = map.size();
+ int rubysize = (size <= (size_type) INT_MAX) ? (int) size : -1;
+ if (rubysize < 0) {
+ SWIG_RUBY_THREAD_BEGIN_BLOCK;
+ rb_raise(rb_eRuntimeError, "map size not valid in Ruby");
+ SWIG_RUBY_THREAD_END_BLOCK;
+ return Qnil;
+ }
+ VALUE obj = rb_hash_new();
+ for (const_iterator i= map.begin(); i!= map.end(); ++i) {
+ VALUE key = swig::from(i->first);
+ VALUE val = swig::from(i->second);
+ rb_hash_aset(obj, key, val);
+ }
+ return obj;
+ }
+ }
+ };
+ }
+}
+
+#define %swig_unordered_map_common(Map...) %swig_map_common(Map)
+#define %swig_unordered_map_methods(Map...) %swig_map_methods(Map)
+
+%rename("delete") std::unordered_map::__delete__;
+%rename("reject!") std::unordered_map::reject_bang;
+%rename("map!") std::unordered_map::map_bang;
+%rename("empty?") std::unordered_map::empty;
+%rename("include?") std::unordered_map::__contains__ const;
+%rename("has_key?") std::unordered_map::has_key const;
+
+%mixin std::map "Enumerable";
+%alias std::unordered_map::push "<<";
+
+%include <std/std_unordered_map.i>
diff --git a/Lib/ruby/std_unordered_multimap.i b/Lib/ruby/std_unordered_multimap.i
new file mode 100644
index 000000000..b663c1298
--- /dev/null
+++ b/Lib/ruby/std_unordered_multimap.i
@@ -0,0 +1,100 @@
+/*
+ Multimaps
+*/
+%include <std_multimap.i>
+
+%fragment("StdUnorderedMultimapTraits","header",fragment="StdMapCommonTraits")
+{
+ namespace swig {
+ template <class RubySeq, class K, class T >
+ inline void
+ assign(const RubySeq& rubyseq, std::unordered_multimap<K,T > *multimap) {
+ typedef typename std::unordered_multimap<K,T>::value_type value_type;
+ typename RubySeq::const_iterator it = rubyseq.begin();
+ for (;it != rubyseq.end(); ++it) {
+ multimap->insert(value_type(it->first, it->second));
+ }
+ }
+
+ template <class K, class T>
+ struct traits_asptr<std::unordered_multimap<K,T> > {
+ typedef std::unordered_multimap<K,T> multimap_type;
+ static int asptr(VALUE obj, std::unordered_multimap<K,T> **val) {
+ int res = SWIG_ERROR;
+ if ( TYPE(obj) == T_HASH ) {
+ static ID id_to_a = rb_intern("to_a");
+ VALUE items = rb_funcall(obj, id_to_a, 0);
+ return traits_asptr_stdseq<std::unordered_multimap<K,T>, std::pair<K, T> >::asptr(items, val);
+ } else {
+ multimap_type *p;
+ res = SWIG_ConvertPtr(obj,(void**)&p,swig::type_info<multimap_type>(),0);
+ if (SWIG_IsOK(res) && val) *val = p;
+ }
+ return res;
+ }
+ };
+
+ template <class K, class T >
+ struct traits_from<std::unordered_multimap<K,T> > {
+ typedef std::unordered_multimap<K,T> multimap_type;
+ typedef typename multimap_type::const_iterator const_iterator;
+ typedef typename multimap_type::size_type size_type;
+
+ static VALUE from(const multimap_type& multimap) {
+ swig_type_info *desc = swig::type_info<multimap_type>();
+ if (desc && desc->clientdata) {
+ return SWIG_NewPointerObj(new multimap_type(multimap), desc, SWIG_POINTER_OWN);
+ } else {
+ size_type size = multimap.size();
+ int rubysize = (size <= (size_type) INT_MAX) ? (int) size : -1;
+ if (rubysize < 0) {
+ SWIG_RUBY_THREAD_BEGIN_BLOCK;
+ rb_raise(rb_eRuntimeError,
+ "multimap_ size not valid in Ruby");
+ SWIG_RUBY_THREAD_END_BLOCK;
+ return Qnil;
+ }
+ VALUE obj = rb_hash_new();
+ for (const_iterator i= multimap.begin(); i!= multimap.end(); ++i) {
+ VALUE key = swig::from(i->first);
+ VALUE val = swig::from(i->second);
+
+ VALUE oldval = rb_hash_aref(obj, key);
+ if (oldval == Qnil) {
+ rb_hash_aset(obj, key, val);
+ } else {
+ // Multiple values for this key, create array if needed
+ // and add a new element to it.
+ VALUE ary;
+ if (TYPE(oldval) == T_ARRAY) {
+ ary = oldval;
+ } else {
+ ary = rb_ary_new2(2);
+ rb_ary_push(ary, oldval);
+ rb_hash_aset(obj, key, ary);
+ }
+ rb_ary_push(ary, val);
+ }
+ }
+ return obj;
+ }
+ }
+ };
+ }
+}
+
+#define %swig_unordered_multimap_methods(MultiMap...) %swig_multimap_methods(MultiMap)
+
+%mixin std::unordered_multimap "Enumerable";
+
+%rename("delete") std::unordered_multimap::__delete__;
+%rename("reject!") std::unordered_multimap::reject_bang;
+%rename("map!") std::unordered_multimap::map_bang;
+%rename("empty?") std::unordered_multimap::empty;
+%rename("include?" ) std::unordered_multimap::__contains__ const;
+%rename("has_key?" ) std::unordered_multimap::has_key const;
+
+%alias std::unordered_multimap::push "<<";
+
+%include <std/std_unordered_multimap.i>
+
diff --git a/Lib/ruby/std_unordered_multiset.i b/Lib/ruby/std_unordered_multiset.i
new file mode 100644
index 000000000..8e0a62b30
--- /dev/null
+++ b/Lib/ruby/std_unordered_multiset.i
@@ -0,0 +1,48 @@
+/*
+ Multisets
+*/
+
+%include <std_unordered_set.i>
+
+%fragment("StdUnorderedMultisetTraits","header",fragment="StdSequenceTraits")
+%{
+ namespace swig {
+ template <class RubySeq, class T>
+ inline void
+ assign(const RubySeq& rubyseq, std::unordered_multiset<T>* seq) {
+ // seq->insert(rubyseq.begin(), rubyseq.end()); // not used as not always implemented
+ typedef typename RubySeq::value_type value_type;
+ typename RubySeq::const_iterator it = rubyseq.begin();
+ for (;it != rubyseq.end(); ++it) {
+ seq->insert(seq->end(),(value_type)(*it));
+ }
+ }
+
+ template <class T>
+ struct traits_asptr<std::unordered_multiset<T> > {
+ static int asptr(VALUE obj, std::unordered_multiset<T> **m) {
+ return traits_asptr_stdseq<std::unordered_multiset<T> >::asptr(obj, m);
+ }
+ };
+
+ template <class T>
+ struct traits_from<std::unordered_multiset<T> > {
+ static VALUE from(const std::unordered_multiset<T>& vec) {
+ return traits_from_stdseq<std::unordered_multiset<T> >::from(vec);
+ }
+ };
+ }
+%}
+
+#define %swig_unordered_multiset_methods(Set...) %swig_unordered_set_methods(Set)
+
+%rename("delete") std::unordered_multiset::__delete__;
+%rename("reject!") std::unordered_multiset::reject_bang;
+%rename("map!") std::unordered_multiset::map_bang;
+%rename("empty?") std::unordered_multiset::empty;
+%rename("include?") std::unordered_multiset::__contains__ const;
+%rename("has_key?") std::unordered_multiset::has_key const;
+
+%alias std::unordered_multiset::push "<<";
+
+%include <std/std_unordered_multiset.i>
diff --git a/Lib/ruby/std_unordered_set.i b/Lib/ruby/std_unordered_set.i
new file mode 100644
index 000000000..5279bbed5
--- /dev/null
+++ b/Lib/ruby/std_unordered_set.i
@@ -0,0 +1,50 @@
+/*
+ Sets
+*/
+
+%include <std_set.i>
+
+%fragment("StdUnorderedSetTraits","header",fragment="<stddef.h>",fragment="StdSequenceTraits")
+%{
+ namespace swig {
+ template <class RubySeq, class T>
+ inline void
+ assign(const RubySeq& rubyseq, std::unordered_set<T>* seq) {
+ // seq->insert(rubyseq.begin(), rubyseq.end()); // not used as not always implemented
+ typedef typename RubySeq::value_type value_type;
+ typename RubySeq::const_iterator it = rubyseq.begin();
+ for (;it != rubyseq.end(); ++it) {
+ seq->insert(seq->end(),(value_type)(*it));
+ }
+ }
+
+ template <class T>
+ struct traits_asptr<std::unordered_set<T> > {
+ static int asptr(VALUE obj, std::unordered_set<T> **s) {
+ return traits_asptr_stdseq<std::unordered_set<T> >::asptr(obj, s);
+ }
+ };
+
+ template <class T>
+ struct traits_from<std::unordered_set<T> > {
+ static VALUE from(const std::unordered_set<T>& vec) {
+ return traits_from_stdseq<std::unordered_set<T> >::from(vec);
+ }
+ };
+ }
+%}
+
+#define %swig_unordered_set_methods(set...) %swig_set_methods(set)
+
+%mixin std::unordered_set "Enumerable";
+
+%rename("delete") std::unordered_set::__delete__;
+%rename("reject!") std::unordered_set::reject_bang;
+%rename("map!") std::unordered_set::map_bang;
+%rename("empty?") std::unordered_set::empty;
+%rename("include?" ) std::unordered_set::__contains__ const;
+%rename("has_key?" ) std::unordered_set::has_key const;
+
+%alias std::unordered_set::push "<<";
+
+%include <std/std_unordered_set.i>
diff --git a/Lib/std/std_unordered_map.i b/Lib/std/std_unordered_map.i
index 1cb714821..0d6986497 100644
--- a/Lib/std/std_unordered_map.i
+++ b/Lib/std/std_unordered_map.i
@@ -1,15 +1,11 @@
//
// std::unordered_map
-// Work in progress - the code is not compilable yet:
-// operator--() and constructor(compare function) not available for unordered_
-// types
//
-
%include <std_pair.i>
%include <std_container.i>
%define %std_unordered_map_methods_common(unordered_map...)
- %std_container_methods(unordered_map);
+ %std_container_methods_without_reverse_iterators(unordered_map);
size_type erase(const key_type& x);
size_type count(const key_type& x) const;
@@ -22,8 +18,6 @@
}
iterator find(const key_type& x);
- iterator lower_bound(const key_type& x);
- iterator upper_bound(const key_type& x);
#endif
%enddef
@@ -68,7 +62,7 @@
namespace std {
- template<class _Key, class _Tp, class _Compare = std::less< _Key >,
+ template<class _Key, class _Tp, class _Hash = std::hash< _Key >, class _Pred = std::equal_to< _Key >,
class _Alloc = allocator<std::pair< const _Key, _Tp > > >
class unordered_map {
public:
@@ -101,26 +95,24 @@ namespace std {
}
}
- %fragment(SWIG_Traits_frag(std::unordered_map< _Key, _Tp, _Compare, _Alloc >), "header",
+ %fragment(SWIG_Traits_frag(std::unordered_map< _Key, _Tp, _Hash, _Pred, _Alloc >), "header",
fragment=SWIG_Traits_frag(std::pair< _Key, _Tp >),
- fragment="StdMapTraits") {
+ fragment="StdUnorderedMapTraits") {
namespace swig {
- template <> struct traits<std::unordered_map< _Key, _Tp, _Compare, _Alloc > > {
+ template <> struct traits<std::unordered_map< _Key, _Tp, _Hash, _Pred, _Alloc > > {
typedef pointer_category category;
static const char* type_name() {
- return "std::unordered_map<" #_Key "," #_Tp "," #_Compare "," #_Alloc " >";
+ return "std::unordered_map<" #_Key "," #_Tp "," #_Hash "," #_Pred "," #_Alloc " >";
}
};
}
}
- %typemap_traits_ptr(SWIG_TYPECHECK_MAP, std::unordered_map< _Key, _Tp, _Compare, _Alloc >);
-
- unordered_map( const _Compare& );
+ %typemap_traits_ptr(SWIG_TYPECHECK_MAP, std::unordered_map< _Key, _Tp, _Hash, _Pred, _Alloc >);
#ifdef %swig_unordered_map_methods
// Add swig/language extra methods
- %swig_unordered_map_methods(std::unordered_map< _Key, _Tp, _Compare, _Alloc >);
+ %swig_unordered_map_methods(std::unordered_map< _Key, _Tp, _Hash, _Pred, _Alloc >);
#endif
%std_unordered_map_methods(unordered_map);
diff --git a/Lib/std/std_unordered_multimap.i b/Lib/std/std_unordered_multimap.i
index 46b56d88a..6f1be9cfa 100644
--- a/Lib/std/std_unordered_multimap.i
+++ b/Lib/std/std_unordered_multimap.i
@@ -1,15 +1,11 @@
//
// std::unordered_multimap
-// Work in progress - the code is not compilable yet:
-// operator--() and constructor(compare function) not available for unordered_
-// types
//
%include <std_unordered_map.i>
-
%define %std_unordered_multimap_methods(mmap...)
- %std_map_methods_common(mmap);
+ %std_unordered_map_methods_common(mmap);
#ifdef SWIG_EXPORT_ITERATOR_METHODS
std::pair<iterator,iterator> equal_range(const key_type& x);
@@ -44,7 +40,7 @@
namespace std {
- template<class _Key, class _Tp, class _Compare = std::less< _Key >,
+ template<class _Key, class _Tp, class _Hash = std::hash< _Key >, class _Pred = std::equal_to< _Key >,
class _Alloc = allocator<std::pair< const _Key, _Tp > > >
class unordered_multimap {
public:
@@ -63,26 +59,24 @@ namespace std {
%traits_swigtype(_Key);
%traits_swigtype(_Tp);
- %fragment(SWIG_Traits_frag(std::unordered_multimap< _Key, _Tp, _Compare, _Alloc >), "header",
+ %fragment(SWIG_Traits_frag(std::unordered_multimap< _Key, _Tp, _Hash, _Pred, _Alloc >), "header",
fragment=SWIG_Traits_frag(std::pair< _Key, _Tp >),
- fragment="StdMultimapTraits") {
+ fragment="StdUnorderedMultimapTraits") {
namespace swig {
- template <> struct traits<std::unordered_multimap< _Key, _Tp, _Compare, _Alloc > > {
+ template <> struct traits<std::unordered_multimap< _Key, _Tp, _Hash, _Pred, _Alloc > > {
typedef pointer_category category;
static const char* type_name() {
- return "std::unordered_multimap<" #_Key "," #_Tp "," #_Compare "," #_Alloc " >";
+ return "std::unordered_multimap<" #_Key "," #_Tp "," #_Hash "," #_Pred "," #_Alloc " >";
}
};
}
}
- %typemap_traits_ptr(SWIG_TYPECHECK_MULTIMAP, std::unordered_multimap< _Key, _Tp, _Compare, _Alloc >);
+ %typemap_traits_ptr(SWIG_TYPECHECK_MULTIMAP, std::unordered_multimap< _Key, _Tp, _Hash, _Pred, _Alloc >);
- unordered_multimap( const _Compare& );
-
#ifdef %swig_unordered_multimap_methods
// Add swig/language extra methods
- %swig_unordered_multimap_methods(std::unordered_multimap< _Key, _Tp, _Compare, _Alloc >);
+ %swig_unordered_multimap_methods(std::unordered_multimap< _Key, _Tp, _Hash, _Pred, _Alloc >);
#endif
%std_unordered_multimap_methods(unordered_multimap);
diff --git a/Lib/std/std_unordered_multiset.i b/Lib/std/std_unordered_multiset.i
index 725ca2fe7..1817fc24a 100644
--- a/Lib/std/std_unordered_multiset.i
+++ b/Lib/std/std_unordered_multiset.i
@@ -1,8 +1,5 @@
//
// std::unordered_multiset
-// Work in progress - the code is not compilable yet:
-// operator--() and constructor(compare function) not available for unordered_
-// types
//
%include <std_unordered_set.i>
@@ -43,7 +40,8 @@ namespace std {
//unordered_multiset
- template <class _Key, class _Compare = std::less< _Key >,
+ template <class _Key, class _Hash = std::hash< _Key >,
+ class _Compare = std::equal_to< _Key >,
class _Alloc = allocator< _Key > >
class unordered_multiset {
public:
@@ -59,26 +57,24 @@ namespace std {
%traits_swigtype(_Key);
- %fragment(SWIG_Traits_frag(std::unordered_multiset< _Key, _Compare, _Alloc >), "header",
+ %fragment(SWIG_Traits_frag(std::unordered_multiset< _Key, _Hash, _Compare, _Alloc >), "header",
fragment=SWIG_Traits_frag(_Key),
- fragment="StdMultisetTraits") {
+ fragment="StdUnorderedMultisetTraits") {
namespace swig {
- template <> struct traits<std::unordered_multiset< _Key, _Compare, _Alloc > > {
+ template <> struct traits<std::unordered_multiset< _Key, _Hash, _Compare, _Alloc > > {
typedef pointer_category category;
static const char* type_name() {
- return "std::unordered_multiset<" #_Key "," #_Compare "," #_Alloc " >";
+ return "std::unordered_multiset<" #_Key "," #_Hash "," #_Compare "," #_Alloc " >";
}
};
}
}
- %typemap_traits_ptr(SWIG_TYPECHECK_MULTISET, std::unordered_multiset< _Key, _Compare, _Alloc >);
-
- unordered_multiset( const _Compare& );
+ %typemap_traits_ptr(SWIG_TYPECHECK_MULTISET, std::unordered_multiset< _Key, _Hash, _Compare, _Alloc >);
#ifdef %swig_unordered_multiset_methods
// Add swig/language extra methods
- %swig_unordered_multiset_methods(std::unordered_multiset< _Key, _Compare, _Alloc >);
+ %swig_unordered_multiset_methods(std::unordered_multiset< _Key, _Hash, _Compare, _Alloc >);
#endif
%std_unordered_multiset_methods(unordered_multiset);
diff --git a/Lib/std/std_unordered_set.i b/Lib/std/std_unordered_set.i
index 98e792040..75e955c4b 100644
--- a/Lib/std/std_unordered_set.i
+++ b/Lib/std/std_unordered_set.i
@@ -1,8 +1,5 @@
//
// std::unordered_set
-// Work in progress - the code is not compilable yet:
-// operator--() and constructor(compare function) not available for unordered_
-// types
//
%include <std_container.i>
@@ -110,8 +107,6 @@ namespace std {
%typemap_traits_ptr(SWIG_TYPECHECK_SET, std::unordered_set< _Key, _Hash, _Compare, _Alloc >);
- unordered_set( const _Compare& );
-
#ifdef %swig_unordered_set_methods
// Add swig/language extra methods
%swig_unordered_set_methods(std::unordered_set< _Key, _Hash, _Compare, _Alloc >);