ch.randelshofer.fastdoubleparser.chr.CharTrieOfNone 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!
/*
* @(#)CharTrieOfNone.java
* Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
*/
package ch.randelshofer.fastdoubleparser.chr;
final class CharTrieOfNone implements CharTrie {
@Override
public int match(CharSequence str) {
return 0;
}
@Override
public int match(CharSequence str, int startIndex, int endIndex) {
return 0;
}
@Override
public int match(char[] str) {
return 0;
}
@Override
public int match(char[] str, int startIndex, int endIndex) {
return 0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy