Example #1
0
 /**
  * Reduce the set of generated chars by given set of chars.
  *
  * @param charsToRemove The string of chars to be removed.
  * @return Self reference for chaining.
  */
 public Text reduceBy(String charsToRemove) {
   chars.reduceBy(charsToRemove);
   return this;
 }