mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-15 14:47:30 +00:00
10 lines
224 B
Text
10 lines
224 B
Text
|
interface common {
|
||
|
/// A (half-open) range (`[start, end)`).
|
||
|
record range {
|
||
|
/// The start of the range (inclusive).
|
||
|
start: u32,
|
||
|
/// The end of the range (exclusive).
|
||
|
end: u32,
|
||
|
}
|
||
|
}
|