-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathuninitialized_array.mbt
128 lines (118 loc) · 3.68 KB
/
uninitialized_array.mbt
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
// Copyright 2025 International Digital Economy Academy
//
// 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.
///|
type UninitializedArray[T] FixedArray[UnsafeMaybeUninit[T]]
///|
/// Creates an uninitialized array of the specified size.
///
/// Parameters:
///
/// - `size` : The number of elements the array should hold.
///
/// Returns an uninitialized array of type `T` with the specified size.
pub fn UninitializedArray::make[T](size : Int) -> UninitializedArray[T] = "%fixedarray.make_uninit"
///|
/// Retrieves the element at the specified index from an uninitialized array.
///
/// Parameters:
///
/// - `array` : The uninitialized array from which to retrieve the element.
/// - `index` : The index of the element to retrieve.
///
/// Returns the element at the specified index.
pub fn UninitializedArray::op_get[T](
self : UninitializedArray[T],
index : Int
) -> T = "%fixedarray.get"
///|
/// Sets the value at the specified index in an uninitialized array.
///
/// Parameters:
///
/// - `array` : The uninitialized array where the value will be set.
/// - `index` : The position in the array where the value will be set.
/// - `value` : The value to be set at the specified index.
pub fn UninitializedArray::op_set[T](
self : UninitializedArray[T],
index : Int,
value : T
) = "%fixedarray.set"
///|
/// Creates a view into a portion of the uninitialized array.
///
/// Parameters:
///
/// * `array` : The uninitialized array to create a view from.
/// * `start` : The starting index of the view (inclusive). Defaults to 0.
/// * `end` : The ending index of the view (exclusive). If not provided, defaults
/// to the length of the array.
///
/// Returns an `ArrayView` that provides a window into the specified portion of
/// the array.
///
/// Throws an error if the indices are out of bounds or if `start` is greater
/// than `end`.
pub fn UninitializedArray::op_as_view[T](
self : UninitializedArray[T],
start~ : Int = 0,
end? : Int
) -> ArrayView[T] {
let len = self.length()
let end = match end {
None => len
Some(end) => end
}
guard start >= 0 && start <= end && end <= len else {
abort("View start index out of bounds")
}
{ buf: self, start, len: end - start }
}
///|
/// Returns the length of an uninitialized array.
///
/// Parameters:
///
/// - `array` : The uninitialized array whose length is to be determined.
///
/// Returns the length of the uninitialized array as an integer.
pub fn UninitializedArray::length[A](self : UninitializedArray[A]) -> Int {
self._.length()
}
///|
fn UninitializedArray::unsafe_blit[T](
dst : UninitializedArray[T],
dst_offset : Int,
src : UninitializedArray[T],
src_offset : Int,
len : Int
) -> Unit {
FixedArray::unsafe_blit(dst._, dst_offset, src._, src_offset, len)
}
///|
test "op_as_view with valid_range" {
let arr : UninitializedArray[Int] = UninitializedArray::make(5)
let view = arr[1:4]
inspect!(view.start, content="1")
inspect!(view.len, content="3")
}
///|
test "panic op_as_view with invalid_start" {
let arr : UninitializedArray[Int] = UninitializedArray::make(5)
ignore(arr[-1:])
}
///|
test "panic op_as_view with invalid_end" {
let arr : UninitializedArray[Int] = UninitializedArray::make(5)
ignore(arr[2:10])
}