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

com.barchart.util.math.DoubleParts Maven / Gradle / Ivy

The newest version!
/**
 * Copyright (C) 2011-2012 Barchart, Inc. 
 *
 * All rights reserved. Licensed under the OSI BSD License.
 *
 * http://www.opensource.org/licenses/bsd-license.php
 */
package com.barchart.util.math;

public class DoubleParts {

	private final long mantissa;
	private final int exponent;

	public long getMantissa() {
		return mantissa;
	}

	public int getExponent() {
		return exponent;
	}

	public DoubleParts(final long mantissa, final int exponent) {
		this.mantissa = mantissa;
		this.exponent = exponent;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy