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

co.nstant.in.cbor.model.HalfPrecisionFloat Maven / Gradle / Ivy

Go to download

Java implementation of RFC 7049: Concise Binary Object Representation (CBOR)

The newest version!
package co.nstant.in.cbor.model;

public class HalfPrecisionFloat extends AbstractFloat {

    public HalfPrecisionFloat(float value) {
        super(SpecialType.IEEE_754_HALF_PRECISION_FLOAT, value);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy