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

org.qbicc.machine.llvm.impl.DoubleConstant Maven / Gradle / Ivy

package org.qbicc.machine.llvm.impl;

import java.io.IOException;

final class DoubleConstant extends AbstractValue {
    final double value;

    DoubleConstant(final double value) {
        this.value = value;
    }

    public Appendable appendTo(final Appendable target) throws IOException {
        return appendHex(target, value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy