Struct lldb::SBStringList
[−]
[src]
pub struct SBStringList { pub raw: SBStringListRef, }
A list of strings.
Fields
raw: SBStringListRef
The underlying raw SBStringListRef
.
Methods
impl SBStringList
[src]
fn new() -> SBStringList
[src]
Construct a new SBStringList
.
fn wrap(raw: SBStringListRef) -> SBStringList
[src]
Construct a new SBStringList
.
fn maybe_wrap(raw: SBStringListRef) -> Option<SBStringList>
[src]
Construct a new Some(SBStringList)
or None
.
fn is_valid(&self) -> bool
[src]
Check whether or not this is a valid SBStringList
value.
fn is_empty(&self) -> bool
[src]
Is this string list empty?
fn clear(&self)
[src]
Clear this string list.
fn append_string(&self, string: &str)
[src]
Append another string to this list.
fn append_list(&self, other: &SBStringList)
[src]
Append another string list to this one.
fn iter(&self) -> SBStringListIter
[src]
Iterate over this string list.