summaryrefslogtreecommitdiff
path: root/Lib
diff options
context:
space:
mode:
authorVadim Zeitlin <vz-swig@zeitlins.org>2019-03-11 23:08:19 +0100
committerVadim Zeitlin <vz-swig@zeitlins.org>2019-03-11 23:08:19 +0100
commit04c9a977873928ca341a06a931f197670562fe97 (patch)
treebd0fc3fbaae65d56d57180df93cee099cce4f1a0 /Lib
parentaaa12450c06d994900ae86fc7a1a9f8f2e25038d (diff)
downloadswig-04c9a977873928ca341a06a931f197670562fe97.tar.gz
Fix header comment in C# std_set typemaps
Mention that these typemaps require .NET 4 or greater.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/csharp/std_set.i10
1 files changed, 7 insertions, 3 deletions
diff --git a/Lib/csharp/std_set.i b/Lib/csharp/std_set.i
index c5dd09473..3b2492e0e 100644
--- a/Lib/csharp/std_set.i
+++ b/Lib/csharp/std_set.i
@@ -1,9 +1,13 @@
/* -----------------------------------------------------------------------------
- * std_map.i
+ * std_set.i
*
- * SWIG typemaps for std::set<T>
+ * SWIG typemaps for std::set<T>.
*
- * The C# wrapper is made to look and feel like a C# System.Collections.Generic.HashSet<>.
+ * Note that ISet<> used here requires .NET 4 or later.
+ *
+ * The C# wrapper implements ISet<> interface and shares performance
+ * characteristics of C# System.Collections.Generic.SortedSet<> class, but
+ * doesn't provide quite all of its methods.
* ----------------------------------------------------------------------------- */
%{