-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P3
-
Affects Version/s: 8
-
Component/s: core-libs
-
None
-
generic
-
generic
ConsString should provide accessors for its left and right parts so that applications can avoid the expensive flattening operation by dealing with the left/right parts directly. The following API is suggested -
public CharSequence left() { return left; }
public CharSequence right() { return right; }
Thanks
public CharSequence left() { return left; }
public CharSequence right() { return right; }
Thanks