Easypt

<=

..Root.StringIterator.<=

Checks if this StringIterator is pointing before or to the same element as another StringIterator. This operation makes sense only if both iterators are pointing to the same String

Child of:

StringIterator

Signatures:

NativeCallable, Callable

Example:

auto str.=("Hello World!");
auto a.=(str.begin().+(str.find("e", 0)));
auto b.=(str.begin().+(str.find("d", 0)));

log(a.<=(b));

Expected output:

true