File tree Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -513,36 +513,24 @@ pub fn (a &array) free() {
513
513
// filter creates a new array with all elements that pass the test implemented by the provided function
514
514
pub fn (a array) filter (predicate fn (voidptr ) bool ) array
515
515
516
- struct ZZZTmp1 {}
517
-
518
516
// any tests whether at least one element in the array passes the test implemented by the
519
517
// provided function. It returns true if, in the array, it finds an element for which the provided
520
518
// function returns true; otherwise it returns false. It doesn't modify the array
521
519
pub fn (a array) any (predicate fn (voidptr ) bool ) bool
522
520
523
- struct ZZZTmp2 {}
524
-
525
521
// all tests whether all elements in the array pass the test implemented by the provided function
526
522
pub fn (a array) all (predicate fn (voidptr ) bool ) bool
527
523
528
- struct ZZZTmp3 {}
529
-
530
524
// map creates a new array populated with the results of calling a provided function
531
525
// on every element in the calling array
532
526
pub fn (a array) map (callback fn (voidptr ) voidptr ) array
533
527
534
- struct ZZZTmp4 {}
535
-
536
528
// sort sorts an array in place in ascending order.
537
529
pub fn (mut a array) sort (callback fn (voidptr , voidptr ) int )
538
530
539
- struct ZZZTmp5 {}
540
-
541
531
// contains determines whether an array includes a certain value among its entries
542
532
pub fn (a array) contains (val voidptr ) bool
543
533
544
- struct ZZZTmp6 {}
545
-
546
534
// index returns the first index at which a given element can be found in the array
547
535
// or -1 if the value is not found.
548
536
pub fn (a array) index (value voidptr ) int
You can’t perform that action at this time.
0 commit comments