-
Notifications
You must be signed in to change notification settings - Fork 20.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
234 additions
and
250 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
44 changes: 44 additions & 0 deletions
44
accounts/abi/bind/testdata/v2_testcase_library/contract.sol
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.26; | ||
|
||
library RecursiveDep { | ||
function AddOne(uint256 val) public pure returns (uint256 ret) { | ||
return val + 1; | ||
} | ||
} | ||
|
||
// Array function to delete element at index and re-organize the array | ||
// so that there are no gaps between the elements. | ||
library Array { | ||
using RecursiveDep for uint256; | ||
|
||
function remove(uint256[] storage arr, uint256 index) public { | ||
// Move the last element into the place to delete | ||
require(arr.length > 0, "Can't remove from empty array"); | ||
arr[index] = arr[arr.length - 1]; | ||
arr[index] = arr[index].AddOne(); | ||
arr.pop(); | ||
} | ||
} | ||
|
||
contract TestArray { | ||
using Array for uint256[]; | ||
|
||
uint256[] public arr; | ||
|
||
function testArrayRemove(uint256 value) public { | ||
for (uint256 i = 0; i < 3; i++) { | ||
arr.push(i); | ||
} | ||
|
||
arr.remove(1); | ||
|
||
assert(arr.length == 2); | ||
assert(arr[0] == 0); | ||
assert(arr[1] == 2); | ||
} | ||
|
||
constructor(uint256 foobar) { | ||
|
||
} | ||
} |
Oops, something went wrong.