From ddbf9045c29db8547b0e3a7bf2c50da545366685 Mon Sep 17 00:00:00 2001 From: Surendra Singhi Date: Mon, 18 Jul 2005 06:26:19 +0000 Subject: [PATCH] Added documentation for few array type related API functions. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7336 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Doc/Manual/Extending.html | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/Doc/Manual/Extending.html b/Doc/Manual/Extending.html index abc959130..069621b96 100644 --- a/Doc/Manual/Extending.html +++ b/Doc/Manual/Extending.html @@ -1924,6 +1924,38 @@ Adds a reference to ty. Adds an array with dimension dim to ty. +

+void SwigType_del_array(SwigType *ty) +

+ +
+Removes a single array dimension from ty. +
+ +

+int SwigType_array_ndim(SwigType *ty) +

+ +
+Returns number of array dimensions of ty. +
+ +

+String* SwigType_array_getdim(SwigType *ty,int n) +

+ +
+Returns nth array dimension of ty. +
+ +

+void SwigType_array_setdim(SwigType *ty, int n, const String_or_char *rep) +

+ +
+Sets nth array dimensions of ty to rep. +
+

void SwigType_add_qualifier(SwigType *ty, String_or_char *q)