Skip to content

Commit d6a3499

Browse files
committed
C++11 hash tables documentation
1 parent de6476f commit d6a3499

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

CHANGES.current

+7
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ the issue number to the end of the URL: https://github.com/swig/swig/issues/
77
Version 3.0.13 (in progress)
88
============================
99

10+
2017-02-10: tamuratak
11+
[Ruby] #883 - Add support for C++11 hash tables:
12+
std::unordered_map
13+
std::unordered_set
14+
std::unordered_multimap
15+
std::unordered_multiset
16+
1017
2017-02-08: jcsharp
1118
[C#] #887 Improve std::vector<T> wrapper constructors -
1219
Replace constructor taking ICollection with IEnumerable and also add IEnumerable<T>

Doc/Manual/CPlusPlus11.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -994,7 +994,8 @@ <H3><a name="CPlusPlus11_hash_tables">7.3.3 Hash tables</a></H3>
994994

995995
<p>
996996
The new hash tables in the STL are <tt>unordered_set</tt>, <tt>unordered_multiset</tt>, <tt>unordered_map</tt>, <tt>unordered_multimap</tt>.
997-
These are not available in SWIG, but in principle should be easily implemented by adapting the current STL containers.
997+
These are not available in all target languages.
998+
Any missing support can in principle be easily implemented by adapting the current STL containers.
998999
</p>
9991000

10001001
<H3><a name="CPlusPlus11_regular_expressions">7.3.4 Regular expressions</a></H3>

0 commit comments

Comments
 (0)