Easypt

==

..Root.StringIterator.==

Checks if two instances of StringIterator are pointing to same element.

Child of:

StringIterator

Signatures:

NativeCallable, Callable

Example:

auto str.=("Hello world!");
auto x.=(str.begin().+(4));
for (auto it.=(str.begin()).!=, str.end(), it.++, {
    if (it.==(x), { log(it.get()) });
});