-
Notifications
You must be signed in to change notification settings - Fork 147
/
integer.d.ts
135 lines (84 loc) · 3.42 KB
/
integer.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/**
* Copyright (c) 2002-2018 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
declare class Integer {
low: number;
high: number;
constructor(low?: number, high?: number)
inSafeRange(): boolean;
toInt(): number;
toNumber(): number;
toString(radix: number): string;
getHighBits(): number;
getLowBits(): number;
getNumBitsAbs(): number;
isZero(): boolean;
isNegative(): boolean;
isPositive(): boolean;
isOdd(): boolean;
isEven(): boolean;
equals(other: Integer | number | string): boolean;
notEquals(other: Integer | number | string): boolean;
lessThan(other: Integer | number | string): boolean;
lessThanOrEqual(other: Integer | number | string): boolean;
greaterThan(other: Integer | number | string): boolean;
greaterThanOrEqual(other: Integer | number | string): boolean;
compare(other: Integer | number | string): number;
negate(): Integer;
add(addend: Integer | number | string): Integer;
subtract(subtrahend: Integer | number | string): Integer;
multiply(multiplier: Integer | number | string): Integer;
div(divisor: Integer | number | string): Integer;
modulo(divisor: Integer | number | string): Integer;
not(): Integer;
and(other: Integer | number | string): Integer;
or(other: Integer | number | string): Integer;
xor(other: Integer | number | string): Integer;
shiftLeft(numBits: Integer | number): Integer;
shiftRight(numBits: Integer | number): Integer;
static __isInteger__: true;
static isInteger(obj: object): boolean;
static fromInt(value: number): Integer;
static fromNumber(value: number): Integer;
static fromBits(lowBits: number, highBits: number): Integer;
static fromString(str: string, radix?: number): Integer;
static fromValue(value: Integer | number | string | { low: number, high: number }): Integer;
static toNumber(value: Integer | number | string | { low: number, high: number }): number;
static toString(value: Integer | number | string | { low: number, high: number }, radix?: number): string;
static inSafeRange(value: Integer | number | string | { low: number, high: number }): boolean;
static ZERO: Integer;
static ONE: Integer;
static NEG_ONE: Integer;
static MAX_VALUE: Integer;
static MIN_VALUE: Integer;
static MIN_SAFE_VALUE: Integer;
static MAX_SAFE_VALUE: Integer;
}
declare function int(value: Integer | number | string | { low: number, high: number }): Integer;
declare function isInt(obj: object): boolean;
declare function inSafeRange(val: Integer | number | string | { low: number, high: number }): boolean;
declare function toNumber(val: Integer | number | string | { low: number, high: number }): number;
declare function toString(val: Integer | number | string | { low: number, high: number }, radix?: number): string;
export {
int,
isInt,
inSafeRange,
toNumber,
toString
}
export default Integer;