Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 2.55 KB

README.md

File metadata and controls

27 lines (21 loc) · 2.55 KB

CharSequences Maven Central Javadocs Build Status

Utility methods for dealing with java.lang.CharSequence.

<dependency>
  <groupId>com.github.marschall</groupId>
  <artifactId>charsequences</artifactId>
  <version>0.8.0</version>
</dependency>

When dealing with CharSequence instead of String many convince methods are not available. While you could simply call toString() on the CharSequence this would defeat the purpose of using a CharSequence. This is project contains implementations of some of them.

They avoid allocation where possible, check out the Javadoc for more information.