Skip to content

Commit 9f08123

Browse files
momvarttkhang1999
authored andcommitted
Rename runtime to leaf in samples
1 parent 042e30c commit 9f08123

File tree

47 files changed

+49
-49
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+49
-49
lines changed

README.md

Lines changed: 1 addition & 1 deletion

samples/TheAlgorithms/ciphers/base64.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ mod tests {
232232
}
233233

234234
pub(super) fn encode_symbolic() {
235-
use runtime::annotations::Symbolizable;
235+
use leaf::annotations::Symbolizable;
236236

237237
let data = b"\xd31\xc9\x87D\xfe\xaa\xb3\xff\xef\x8c\x0eoD";
238238
let mut data_sym = NSByteString::new();
@@ -248,7 +248,7 @@ mod tests {
248248
}
249249

250250
pub(super) fn decode_symbolic() {
251-
use runtime::annotations::Symbolizable;
251+
use leaf::annotations::Symbolizable;
252252

253253
let encoded = b"0zHJh0T+qrP/74wOb0Q=";
254254
let mut encoded_sym = NSByteString::new();
@@ -264,7 +264,7 @@ mod tests {
264264
}
265265

266266
pub(super) fn encode_decode_symbolic() {
267-
use runtime::annotations::Symbolizable;
267+
use leaf::annotations::Symbolizable;
268268

269269
let data = b"Lorem Ipsum";
270270
let mut data_sym = NSByteString::new();

samples/TheAlgorithms/sorting/quick_sort.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* Adapted from: https://github.com/TheAlgorithms/Rust */
22

3-
use runtime::annotations::Symbolizable;
3+
use leaf::annotations::Symbolizable;
44

55
fn main() {
66
all_symbolic();

samples/assignment/addr_of/comapre_with_sym.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use runtime::annotations::Symbolizable;
1+
use leaf::annotations::Symbolizable;
22

33
fn main() {
44
let a = 20;

samples/assignment/bin_op/checked_ops/checked_add.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use runtime::annotations::Symbolizable;
1+
use leaf::annotations::Symbolizable;
22

33
fn main() {
44
let mut x = 20_u64.mark_symbolic();

samples/assignment/bin_op/checked_ops/checked_mul.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use runtime::annotations::Symbolizable;
1+
use leaf::annotations::Symbolizable;
22

33
fn main() {
44
let mut x = 20_u32.mark_symbolic();

samples/assignment/bin_op/checked_ops/checked_sub.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use runtime::annotations::Symbolizable;
1+
use leaf::annotations::Symbolizable;
22

33
fn main() {
44
let mut x = 20_u16.mark_symbolic();

samples/assignment/bin_op/checked_ops/unsigned_test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use runtime::annotations::Symbolizable;
1+
use leaf::annotations::Symbolizable;
22

33
fn main() {
44
let mut x = 0_u64.mark_symbolic();

samples/assignment/bin_op/shift/differing_types.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use runtime::annotations::Symbolizable;
1+
use leaf::annotations::Symbolizable;
22

33
fn main() {
44
let a1 = 0b1u8.mark_symbolic() << 7u8; // == 2^15

samples/basic/is_sorted/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use runtime::annotations::Symbolizable;
1+
use leaf::annotations::Symbolizable;
22

33
fn main() {
44
let arr = get_symbolic_array();

0 commit comments

Comments
 (0)