blob: 04f72668b37feef093e2ed08716ae94b41662684 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
%extend lldb::SBStringList {
#ifdef SWIGPYTHON
%pythoncode%{
def __iter__(self):
'''Iterate over all strings in a lldb.SBStringList object.'''
return lldb_iter(self, 'GetSize', 'GetStringAtIndex')
def __len__(self):
'''Return the number of strings in a lldb.SBStringList object.'''
return self.GetSize()
%}
#endif
}
|