-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathrange.proto
More file actions
40 lines (31 loc) · 966 Bytes
/
range.proto
File metadata and controls
40 lines (31 loc) · 966 Bytes
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
syntax = "proto3";
package xds.type.v3;
option java_package = "com.github.xds.type.v3";
option java_outer_classname = "RangeProto";
option java_multiple_files = true;
option go_package = "github.com/cncf/xds/go/xds/type/v3";
// [#protodoc-title: Number range]
// Specifies the int64 start and end of the range using half-open interval
// semantics [start, end).
message Int64Range {
// start of the range (inclusive)
int64 start = 1;
// end of the range (exclusive)
int64 end = 2;
}
// Specifies the int32 start and end of the range using half-open interval
// semantics [start, end).
message Int32Range {
// start of the range (inclusive)
int32 start = 1;
// end of the range (exclusive)
int32 end = 2;
}
// Specifies the double start and end of the range using half-open interval
// semantics [start, end).
message DoubleRange {
// start of the range (inclusive)
double start = 1;
// end of the range (exclusive)
double end = 2;
}