SBStringList¶
-
class
lldb.SBStringList(*args)¶ Represents a list of strings.
Methods Summary
AppendList(SBStringList self, …)AppendList(SBStringList self, SBStringList strings)
AppendString(SBStringList self, char const * str)Clear(SBStringList self)GetSize(SBStringList self)GetStringAtIndex(SBStringList self, size_t idx)IsValid(SBStringList self)Methods Documentation
-
AppendList(SBStringList self, char const ** strv, int strc)¶ AppendList(SBStringList self, SBStringList strings)
-
AppendString(SBStringList self, char const * str)¶
-
Clear(SBStringList self)¶
-
GetSize(SBStringList self) → uint32_t¶
-
GetStringAtIndex(SBStringList self, size_t idx) → char const *¶
-
IsValid(SBStringList self) → bool¶
-
__iter__()¶ Iterate over all strings in a lldb.SBStringList object.
-
__len__()¶ Return the number of strings in a lldb.SBStringList object.
-