-
Bug
-
Resolution: Fixed
-
P3
-
8
-
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