summaryrefslogtreecommitdiff
path: root/devtools/swigwin-1.3.34/Lib/lua/carrays.i
blob: 9a210d2437a88565789873bcedb18c208660d915 (plain) (blame)
1
2
3
4
5
6
7
8
/* Small change to the standard carrays.i
renaming the field to __getitem__ & __setitem__ 
for operator[] access
*/
%rename(__getitem) *::getitem; // the v=X[i] (get operator)
%rename(__setitem) *::setitem; // the X[i]=v (set operator)

%include <../carrays.i>