blob: 4ab814fdb172e0c7af91d27dbe985e574394b3f6 [file] [log] [blame]
// Copyright (c) 2019, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.android.tools.r8.ir.desugar.backports;
public final class DoubleMethods {
public static int hashCode(double d) {
long l = Double.doubleToLongBits(d);
return (int) (l ^ (l >>> 32));
}
public static boolean isFinite(double d) {
return !Double.isInfinite(d) && !Double.isNaN(d);
}
}