All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uk.co.real_logic.artio.util.float_parsing.CharReader Maven / Gradle / Ivy

There is a newer version: 0.160
Show newest version
package uk.co.real_logic.artio.util.float_parsing;

public interface CharReader
{
    boolean isSpace(Data data, int index);

    char charAt(Data data, int index);

    CharSequence asString(Data data, int offset, int length);

    boolean isZero(Data data, int index);

    int getDigit(Data data, int index, char charValue);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy