Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 2.42 KB

File metadata and controls

26 lines (20 loc) · 2.42 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.6.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.