/******************************************************************** * @author: Kaven * @email: kaven@wuwenkai.com * @website: http://blog.kaven.xyz * @file: [Kaven-Basic] /src/libs/class/KavenUInt64.ts * @create: 2019-04-11 13:01:36.287 * @modify: 2026-03-12 14:03:36.178 * @version: 6.1.1 * @times: 77 * @lines: 201 * @copyright: Copyright © 2019-2026 Kaven. All Rights Reserved. * @description: [description] * @license: * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. ********************************************************************/ /** * * @since 4.0.0 * @version 2022-06-26 */ export declare class KavenUInt64 { get HEX(): string; static FromBytes(...bytes: number[]): KavenUInt64; static FromHighLow(high: number, low: number): KavenUInt64; static Initialize2d(x: number, y: number): any[][]; protected high: number; protected low: number; constructor(); constructor(value: number); constructor(value: string); constructor(value: string, radix: number); Swap(): KavenUInt64; AND(val: KavenUInt64 | number): KavenUInt64; XOR(val: KavenUInt64 | number): KavenUInt64; NOT(): KavenUInt64; LeftRotate(n: number): KavenUInt64; RightRotate(n: number): KavenUInt64; Clone(): KavenUInt64; Equals(another: KavenUInt64 | number): boolean; } //# sourceMappingURL=KavenUInt64.d.ts.map