| Package | Description |
|---|---|
| org.eclipse.collections.impl.utility |
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
|
| Modifier and Type | Method | Description |
|---|---|---|
static void |
StringIterate.forEach(String string,
CodePointProcedure procedure) |
Deprecated.
since 7.0. Use
StringIterate.forEachCodePoint(String, CodePointProcedure) instead. |
static void |
StringIterate.forEachCodePoint(String string,
CodePointProcedure procedure) |
For each int code point in the
string, execute the CodePointProcedure. |
static void |
StringIterate.reverseForEach(String string,
CodePointProcedure procedure) |
Deprecated.
since 7.0. Use
StringIterate.reverseForEachCodePoint(String, CodePointProcedure) instead. |
static void |
StringIterate.reverseForEachCodePoint(String string,
CodePointProcedure procedure) |
For each int code point in the
string in reverse order, execute the CodePointProcedure. |
Copyright © 2004–2017. All rights reserved.