<
..Root.StringIterator.<
Checks if this StringIterator
is pointing before another StringIterator
. This operation makes sense only if both iterators are pointing to the same String
Parameters: another StringIterator
Return value: new Boolean
NativeCallable
, Callable
auto str.=("Hello World!");
auto a.=(str.begin().+(str.find("e", 0)));
auto b.=(str.begin().+(str.find("d", 0)));
log(a.<(b));
true