end
..Root.String.end
Returns an iterator pointing after the last character of this String
.
- Return value: new
StringIterator
Child of:
String
Signatures:
NativeCallable
, Callable
Example:
auto str.=("Hello world!");
for (auto it.=(str.begin()).!=, str.end(), it.++, {
log(it.get());
});