ch.randelshofer.fastdoubleparser.chr.FormatCharSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastdoubleparser Show documentation
Show all versions of fastdoubleparser Show documentation
A Java port of Daniel Lemire's fast_float project.
The newest version!
/*
* @(#)FormatCharSet.java
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser.chr;
/**
* This format set contains all Unicode format chars.
*/
public class FormatCharSet implements CharSet {
@Override
public boolean containsKey(char ch) {
return Character.getType(ch) == Character.FORMAT;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy