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

com.azure.cosmos.implementation.routing.UInt128 Maven / Gradle / Ivy

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.cosmos.implementation.routing;

class UInt128 {
    long low;
    long high;

    UInt128(long x, long y) {
        this.low = x;
        this.high = y;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy