-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy patharraycore_nonjs.mbt
427 lines (403 loc) · 10.5 KB
/
arraycore_nonjs.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
// 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.
///|
fn set_null[T](self : UninitializedArray[T], index : Int) = "%fixedarray.set_null"
///|
/// An `Array` is a collection of values that supports random access and can
/// grow in size.
struct Array[T] {
mut buf : UninitializedArray[T]
mut len : Int
}
///|
fn Array::make_uninit[T](len : Int) -> Array[T] {
{ buf: UninitializedArray::make(len), len }
}
///|
/// Creates a new empty array with an optional initial capacity.
///
/// Parameters:
///
/// * `capacity` : The initial capacity of the array. If 0 (default), creates an
/// array with minimum capacity. Must be non-negative.
///
/// Returns a new empty array of type `Array[T]` with the specified initial
/// capacity.
///
/// Example:
///
/// ```moonbit
/// test "Array::new" {
/// let arr : Array[Int] = Array::new(capacity=10)
/// inspect!(arr.length(), content="0")
/// inspect!(arr.capacity(), content="10")
/// }
///
/// test "Array::new/default" {
/// let arr : Array[Int] = Array::new()
/// inspect!(arr.length(), content="0")
/// }
/// ```
pub fn Array::new[T](capacity~ : Int = 0) -> Array[T] {
if capacity == 0 {
[]
} else {
{ buf: UninitializedArray::make(capacity), len: 0 }
}
}
///|
/// Returns the number of elements in the array.
///
/// Parameters:
///
/// * `array` : The array whose length is to be determined.
///
/// Returns the number of elements in the array as an integer.
///
/// Example:
///
/// ```moonbit
/// test "Array::length" {
/// let arr = [1, 2, 3]
/// inspect!(arr.length(), content="3")
/// let empty : Array[Int] = []
/// inspect!(empty.length(), content="0")
/// }
/// ```
#intrinsic("%array.length")
pub fn Array::length[T](self : Array[T]) -> Int {
self.len
}
///|
/// Truncates the array to the specified length. This function is marked as
/// `unsafe` because it directly manipulates the internal buffer of the array,
/// which can lead to undefined behavior if not used carefully.
///
/// # Parameters
///
/// - `self` : The array to be truncated.
/// - `new_len` : The new length to which the array should be truncated. Must be
/// less than or equal to the current length of the array.
///
/// # Returns
///
/// - `Unit` : This function does not return a value.
///
/// # Errors
///
/// - This function does not explicitly raise errors, but improper use (e.g.,
/// setting `new_len` greater than the current length) can lead to undefined
/// behavior.
///
/// TODO: this can be optimized by using the intrinsic to null out the range
fn Array::unsafe_truncate_to_length[T](self : Array[T], new_len : Int) -> Unit {
let len = self.length()
guard new_len <= len
for i in new_len..<len {
self.buf.set_null(i)
}
self.len = new_len
}
///|
test "unsafe_truncate_to_length" {
let arr = [1, 2, 3, 4, 5]
arr.unsafe_truncate_to_length(3)
inspect!(arr, content="[1, 2, 3]")
}
///|
fn Array::buffer[T](self : Array[T]) -> UninitializedArray[T] {
self.buf
}
///|
fn Array::resize_buffer[T](self : Array[T], new_capacity : Int) -> Unit {
let new_buf = UninitializedArray::make(new_capacity)
let old_buf = self.buf
let old_cap = old_buf._.length()
let copy_len = if old_cap < new_capacity { old_cap } else { new_capacity }
UninitializedArray::unsafe_blit(new_buf, 0, old_buf, 0, copy_len)
self.buf = new_buf
}
///|
test "array_unsafe_blit_fixed" {
let src = FixedArray::make(5, 0)
let dst = UninitializedArray::make(5)
for i in 0..<5 {
src[i] = i + 1
}
UninitializedArray::unsafe_blit_fixed(dst, 0, src, 0, 5)
for i in 0..<5 {
assert_eq!(dst[i], src[i])
}
}
///|
test "UninitializedArray::unsafe_blit_fixed" {
let src = FixedArray::make(5, 0)
let dst = UninitializedArray::make(5)
for i in 0..<5 {
src[i] = i + 1
}
UninitializedArray::unsafe_blit_fixed(dst, 0, src, 0, 5)
for i in 0..<5 {
assert_eq!(dst[i], src[i])
}
}
///|
test "UninitializedArray::unsafe_blit_fixed" {
let src = FixedArray::make(5, 0)
let dst = UninitializedArray::make(5)
for i in 0..<5 {
src[i] = i + 1
}
UninitializedArray::unsafe_blit_fixed(dst, 0, src, 0, 5)
for i in 0..<5 {
assert_eq!(dst[i], src[i])
}
}
///|
test "Array::resize_buffer" {
let arr = Array::new(capacity=2)
arr.push(1)
arr.push(2)
arr.resize_buffer(4)
assert_eq!(arr.buffer()._.length() >= 4, true)
arr.push(3)
arr.push(4)
assert_eq!(arr.length(), 4)
assert_eq!(arr[0], 1)
assert_eq!(arr[1], 2)
assert_eq!(arr[2], 3)
assert_eq!(arr[3], 4)
}
///|
/// Reallocate the array with a new capacity.
fn Array::realloc[T](self : Array[T]) -> Unit {
let old_cap = self.length()
let new_cap = if old_cap == 0 { 8 } else { old_cap * 2 }
self.resize_buffer(new_cap)
}
///|
/// Reserves capacity to ensure that it can hold at least the number of elements
/// specified by the `capacity` argument.
///
/// # Example
///
/// ```
/// let v = [1]
/// v.reserve_capacity(10)
/// assert_eq!(v.capacity(), 10)
/// ```
pub fn Array::reserve_capacity[T](self : Array[T], capacity : Int) -> Unit {
if self.capacity() >= capacity {
return
}
self.resize_buffer(capacity)
}
///|
/// Shrinks the capacity of the array as much as possible.
///
/// # Example
///
/// ```
/// let v = Array::new(capacity=10)
/// v.push(1)
/// v.push(2)
/// v.push(3)
/// v.shrink_to_fit()
/// assert_eq!(v.capacity(), 3)
/// ```
pub fn Array::shrink_to_fit[T](self : Array[T]) -> Unit {
if self.capacity() <= self.length() {
return
}
self.resize_buffer(self.length())
}
///|
/// Adds an element to the end of the array.
///
/// If the array is at capacity, it will be reallocated.
///
/// # Example
/// ```
/// let v = []
/// v.push(3)
/// ```
pub fn Array::push[T](self : Array[T], value : T) -> Unit {
if self.length() == self.buffer()._.length() {
self.realloc()
}
let length = self.length()
self.unsafe_set(length, value)
self.len = length + 1
}
///|
/// Removes the last element from a array and returns it, or `None` if it is empty.
///
/// # Example
/// ```
/// let v = [1, 2, 3]
/// assert_eq!(v.pop(), Some(3))
/// assert_eq!(v, [1, 2])
/// ```
pub fn Array::pop[T](self : Array[T]) -> T? {
let len = self.length()
if len == 0 {
None
} else {
let index = len - 1
let v = self.unsafe_get(index)
self.buf.set_null(index)
self.len = index
Some(v)
}
}
///|
#deprecated("Use `unsafe_pop` instead")
#coverage.skip
pub fn Array::pop_exn[T](self : Array[T]) -> T {
self.unsafe_pop()
}
///|
/// Removes and returns the last element from the array.
///
/// Parameters:
///
/// * `array` : The array from which to remove and return the last element.
///
/// Returns the last element of the array before removal.
///
/// Example:
///
/// ```moonbit
/// test "unsafe_pop" {
/// let arr = [1, 2, 3]
/// inspect!(arr.unsafe_pop(), content="3")
/// inspect!(arr, content="[1, 2]")
/// }
///
/// test "panic unsafe_pop/empty" {
/// let arr : Array[Int] = []
/// ignore(arr.unsafe_pop()) // Panics when array is empty
/// }
/// ```
///
/// @alert unsafe "Panic if the array is empty."
pub fn Array::unsafe_pop[T](self : Array[T]) -> T {
let len = self.length()
guard len != 0
let index = len - 1
let v = self.unsafe_get(index)
self.buf.set_null(index)
self.len = index
v
}
///|
/// Remove an element from the array at a given index.
///
/// Removes and returns the element at position index within the array, shifting all elements after it to the left.
///
/// # Example
/// ```
/// let v = [3, 4, 5]
/// assert_eq!(v.remove(1), 4)
/// assert_eq!(v, [3, 5])
/// ```
/// @alert unsafe "Panic if index is out of bounds."
pub fn Array::remove[T](self : Array[T], index : Int) -> T {
guard index >= 0 && index < self.length() else {
abort(
"index out of bounds: the len is from 0 to \{self.length()} but the index is \{index}",
)
}
let value = self.unsafe_get(index)
UninitializedArray::unsafe_blit(
self.buffer(),
index,
self.buffer(),
index + 1,
self.length() - index - 1,
)
self.unsafe_truncate_to_length(self.length() - 1)
value
}
///|
/// Removes the specified range from the array and returns it.
///
/// This functions returns a array range from `begin` to `end` `[begin, end)`
///
/// # Example
/// ```
/// let v = [3, 4, 5]
/// let vv = v.drain(1, 2) // vv = [4], v = [3, 5]
/// assert_eq!(vv, [4])
/// assert_eq!(v, [3, 5])
/// ```
/// @alert unsafe "Panic if index is out of bounds."
pub fn Array::drain[T](self : Array[T], begin : Int, end : Int) -> Array[T] {
guard begin >= 0 && end <= self.length() && begin <= end
let num = end - begin
let v = Array::make_uninit(num)
UninitializedArray::unsafe_blit(v.buffer(), 0, self.buffer(), begin, num)
UninitializedArray::unsafe_blit(
self.buffer(),
begin,
self.buffer(),
end,
self.length() - end,
)
self.unsafe_truncate_to_length(self.length() - num)
v
}
///|
/// Inserts an element at a given index within the array.
///
/// # Example
/// ```
/// [3, 4, 5].insert(1, 6)
/// ```
/// @alert unsafe "Panic if index is out of bounds."
pub fn Array::insert[T](self : Array[T], index : Int, value : T) -> Unit {
guard index >= 0 && index <= self.length() else {
abort(
"index out of bounds: the len is from 0 to \{self.length()} but the index is \{index}",
)
}
if self.length() == self.buffer()._.length() {
self.realloc()
}
UninitializedArray::unsafe_blit(
self.buffer(),
index + 1,
self.buffer(),
index,
self.length() - index,
)
let length = self.length()
self.unsafe_set(index, value)
self.len = length + 1
}
///|
/// Resize the array in-place so that `len` is equal to `new_len`.
///
/// If `new_len` is greater than `len`, the array will be extended by the
/// difference, and the values in the new slots are left uninitialized.
/// If `new_len` is less than `len`, it will panic
///
/// @alert unsafe "Panic if new length is negative."
fn Array::unsafe_grow_to_length[T](self : Array[T], new_len : Int) -> Unit {
guard new_len >= self.length()
let new_buf = UninitializedArray::make(new_len)
UninitializedArray::unsafe_blit(new_buf, 0, self.buf, 0, self.len)
self.len = new_len
self.buf = new_buf
}