Skip to content

Commit 4c1073c

Browse files
Add assert_abs_diff*
1 parent 718590e commit 4c1073c

File tree

2,474 files changed

+110043
-104867
lines changed

Some content is hidden

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

2,474 files changed

+110043
-104867
lines changed

CHANGES.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,20 @@
33
Changes highlights for recent major versions.
44

55

6-
## Version 9.0.0
6+
## Version 9.0
77

8-
* Add returns to many macros.
8+
* 9.1.0: Add absolute difference macros: `assert_abs_diff*`.
99

10-
* Breaking change: rename macros from `assert_*_eq` into `assert_*_eq2`, then from `assert_*_eq_expr` into `assert_*_eq`.
10+
* 9.0.0: Breaking change: many macros now return data upon success.
11+
12+
* 9.0.0: Breaking change: rename macros from `assert_*_expr` into `assert_*_x`.
1113

1214

1315
## Version 8.x
1416

1517
* Add matches macros: `assert_matches`, `assert_not_matches`.
1618

17-
* Add Iterator macros: `assert_iter_all`, `assert_iter_any`, `assert_iter_eq2`, etc.
19+
* Add Iterator macros: `assert_iter_all`, `assert_iter_any`, `assert_iter_eq`, etc.
1820

1921
* Add Result macros: `assert_ok`, `assert_err`, etc.
2022

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "assertables"
3-
version = "9.0.0"
3+
version = "9.1.0"
44
authors = ["Joel Parker Henderson <[email protected]>"]
55
edition = "2021"
66
description = "Assertables: assert macros for better testing, debugging, quality assurance, and runtime reliability."
77
readme = "README.md"
88
repository = "https://github.com/sixarm/assertables-rust-crate/"
9-
license = "MIT OR Apache-2.0 OR GPL-2.0 OR GPL-3.0 or BSD-3-Clause"
9+
license = "MIT OR Apache-2.0 OR GPL-2.0 OR GPL-3.0 OR BSD-3-Clause"
1010
keywords = ["assert", "assertable", "assertion", "macro", "test"]
1111
categories = ["development-tools", "development-tools::testing", "rust-patterns"]
1212

README.md

+99-69
Large diffs are not rendered by default.

book.md

+52-52
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,16 @@ let output2 = function2(input2);
4141
assert_eq!(output1, output2);
4242
```
4343

44-
Rust `assertables` provides the macro `assert_fn_eq2!` that does the same kind of processing, by automatically calling functions with inputs, then comparing the outputs:
44+
Rust `assertables` provides the macro `assert_fn_eq!` that does the same kind of processing, by automatically calling functions with inputs, then comparing the outputs:
4545

4646
```rust
47-
assert_fn_eq2!(function1, input1, function2, input2);
47+
assert_fn_eq!(function1, input1, function2, input2);
4848
```
4949

5050
The `assertables` message looks like:
5151

5252
```text
53-
assertion failed: `assert_fn_eq2!(left_function, left_input, right_function, right_input)`,
53+
assertion failed: `assert_fn_eq!(left_function, left_input, right_function, right_input)`,
5454
left_function label: `function1`,
5555
left_input label: `input1`,
5656
left_input debug: `…`,
@@ -63,27 +63,27 @@ assertion failed: `assert_fn_eq2!(left_function, left_input, right_function, rig
6363

6464
Rust `assertables` provides these macros for functions:
6565

66-
* `assert_fn_eq2!`
66+
* `assert_fn_eq!`
6767

6868
* `assert_fn_eq_other!`
6969

70-
* `assert_fn_ge2!`
70+
* `assert_fn_ge!`
7171

7272
* `assert_fn_ge_other!`
7373

74-
* `assert_fn_gt2!`
74+
* `assert_fn_gt!`
7575

7676
* `assert_fn_gt_other!`
7777

78-
* `assert_fn_le2!`
78+
* `assert_fn_le!`
7979

8080
* `assert_fn_le_other!`
8181

82-
* `assert_fn_lt2!`
82+
* `assert_fn_lt!`
8383

8484
* `assert_fn_lt_other!`
8585

86-
* `assert_fn_ne2!`
86+
* `assert_fn_ne!`
8787

8888
* `assert_fn_ne_other!`
8989

@@ -96,20 +96,20 @@ TODO
9696

9797
let a = 1;
9898
let b = String::from("1");
99-
assert_fn_ok_eq2!(example_digit_to_string, a, b);
99+
assert_fn_ok_eq!(example_digit_to_string, a, b);
100100
//-> ()
101101

102102
let a = 1;
103103
let b = String::from("2");
104104
// Panic with error message
105105
let result = panic::catch_unwind(|| {
106-
assert_fn_ok_eq2!(example_digit_to_string, a, b);
106+
assert_fn_ok_eq!(example_digit_to_string, a, b);
107107
//-> panic!
108108
});
109109
assert!(result.is_err());
110110

111111
```text
112-
assertion failed: `assert_fn_ok_eq2!(left_function, left_input, right_function, right_input)`
112+
assertion failed: `assert_fn_ok_eq!(left_function, left_input, right_function, right_input)`
113113
left_function label: `example_digit_to_string`,
114114
left_input label: `a`,
115115
left_input debug: `1`,
@@ -125,51 +125,51 @@ assertion failed: `assert_fn_ok_eq2!(left_function, left_input, right_function,
125125

126126
Rust `assertables` provides these macros for functions that return a Result of `Ok`, `Err`:
127127

128-
* `assert_fn_ok_eq2!`
128+
* `assert_fn_ok_eq!`
129129

130130
* `assert_fn_ok_eq_other!`
131131

132-
* `assert_fn_ok_ge2!`
132+
* `assert_fn_ok_ge!`
133133

134134
* `assert_fn_ok_ge_other!`
135135

136-
* `assert_fn_ok_gt2!`
136+
* `assert_fn_ok_gt!`
137137

138138
* `assert_fn_ok_gt_other!`
139139

140-
* `assert_fn_ok_le2!`
140+
* `assert_fn_ok_le!`
141141

142142
* `assert_fn_ok_le_other!`
143143

144-
* `assert_fn_ok_lt2!`
144+
* `assert_fn_ok_lt!`
145145

146146
* `assert_fn_ok_lt_other!`
147147

148-
* `assert_fn_ok_ne2!`
148+
* `assert_fn_ok_ne!`
149149

150150
* `assert_fn_ok_ne_other!`
151151

152-
* `assert_fn_err_eq2!`
152+
* `assert_fn_err_eq!`
153153

154154
* `assert_fn_err_eq_other!`
155155

156-
* `assert_fn_err_ge2!`
156+
* `assert_fn_err_ge!`
157157

158158
* `assert_fn_err_ge_other!`
159159

160-
* `assert_fn_err_gt2!`
160+
* `assert_fn_err_gt!`
161161

162162
* `assert_fn_err_gt_other!`
163163

164-
* `assert_fn_err_le2!`
164+
* `assert_fn_err_le!`
165165

166166
* `assert_fn_err_le_other!`
167167

168-
* `assert_fn_err_lt2!`
168+
* `assert_fn_err_lt!`
169169

170170
* `assert_fn_err_lt_other!`
171171

172-
* `assert_fn_err_ne2!`
172+
* `assert_fn_err_ne!`
173173

174174
* `assert_fn_err_ne_other!`
175175

@@ -232,16 +232,16 @@ let set2: std::collections::BTreeSet<_> = array2.into_iter().collect();
232232
assert_eq!(set1, set2);
233233
```
234234

235-
Rust `assertables` provides the macro `assert_set_eq2!` that does the same kind of processing, by automatically converting inputs into sets, then comparing them as sets:
235+
Rust `assertables` provides the macro `assert_set_eq!` that does the same kind of processing, by automatically converting inputs into sets, then comparing them as sets:
236236

237237
```rust
238-
assert_set_eq2!(array1, array2);
238+
assert_set_eq!(array1, array2);
239239
```
240240

241241
The `assertables` message looks like:
242242

243243
```text
244-
assertion failed: `assert_set_eq2!(left_set, right_set)`
244+
assertion failed: `assert_set_eq!(left_set, right_set)`
245245
left_set label: `&array1`,
246246
left_set debug: `[1, 2]`,
247247
right_set label: `&array2`,
@@ -252,9 +252,9 @@ assertion failed: `assert_set_eq2!(left_set, right_set)`
252252

253253
Rust `assertables` provides these macros for sets:
254254

255-
* `assert_set_eq2`
255+
* `assert_set_eq`
256256

257-
* `assert_set_ne2`
257+
* `assert_set_ne`
258258

259259
* `assert_set_subset`
260260

@@ -327,16 +327,16 @@ for x in array2.into_iter() {
327327
assert_eq!(bag1, bag2);
328328
```
329329

330-
Rust `assertables` provides the macro `assert_bag_eq2!` that does the same kind of processing, by automatically converting inputs into sets, then comparing them as bags:
330+
Rust `assertables` provides the macro `assert_bag_eq!` that does the same kind of processing, by automatically converting inputs into sets, then comparing them as bags:
331331

332332
```rust
333-
assert_bag_eq2!(array1, array2);
333+
assert_bag_eq!(array1, array2);
334334
```
335335

336336
The `aasertables` message looks like:
337337

338338
```text
339-
assertion failed: `assert_bag_eq2!(left_bag, right_bag)`
339+
assertion failed: `assert_bag_eq!(left_bag, right_bag)`
340340
left_bag label: `&array1`,
341341
left_bag debug: `[1, 1]`,
342342
right_bag label: `&array2`,
@@ -347,9 +347,9 @@ assertion failed: `assert_bag_eq2!(left_bag, right_bag)`
347347

348348
Rust `assertables` provides these macros for bags:
349349

350-
* `assert_bag_eq2`
350+
* `assert_bag_eq`
351351

352-
* `assert_bag_ne2`
352+
* `assert_bag_ne`
353353

354354
* `assert_bag_subbag`
355355

@@ -389,35 +389,35 @@ let result2 = reader2.read_to_string(&mut string2);
389389
assert_eq!(string1, string2);
390390
```
391391

392-
Rust `assertables` provides the macro `assert_io_read_to_string_eq2!` that does the same kind of processing, by automatically calling `read_to_string()`, then comparing the outputs as strings:
392+
Rust `assertables` provides the macro `assert_io_read_to_string_eq!` that does the same kind of processing, by automatically calling `read_to_string()`, then comparing the outputs as strings:
393393

394394
```rust
395-
assert_io_read_to_string_eq2!(reader1, reader2);
395+
assert_io_read_to_string_eq!(reader1, reader2);
396396
```
397397

398398
Rust `assertables` provides these macros for readers:
399399

400-
* `assert_io_read_to_string_eq2!`
400+
* `assert_io_read_to_string_eq!`
401401

402402
* `assert_io_read_to_string_eq_other!`
403403

404-
* `assert_io_read_to_string_ne2!`
404+
* `assert_io_read_to_string_ne!`
405405

406406
* `assert_io_read_to_string_ne_other!`
407407

408-
* `assert_io_read_to_string_lt2!`
408+
* `assert_io_read_to_string_lt!`
409409

410410
* `assert_io_read_to_string_lt_other!`
411411

412-
* `assert_io_read_to_string_le2!`
412+
* `assert_io_read_to_string_le!`
413413

414414
* `assert_io_read_to_string_le_other!`
415415

416-
* `assert_io_read_to_string_gt2!`
416+
* `assert_io_read_to_string_gt!`
417417

418418
* `assert_io_read_to_string_gt_other!`
419419

420-
* `assert_io_read_to_string_ge2!`
420+
* `assert_io_read_to_string_ge!`
421421

422422
* `assert_io_read_to_string_ge_other!`
423423

@@ -470,22 +470,22 @@ let string2 = String::from_utf8(command2.output().unwrap().stdout).unwrap();
470470
assert_eq!(string1, string2);
471471
```
472472

473-
Rust `assertables` provides the macro `assert_command_stdout_eq2!` that does the same kind of processing, by automatically converting commands into standard outputs, then into UTF-8 strings, then comparing them as strings:
473+
Rust `assertables` provides the macro `assert_command_stdout_eq!` that does the same kind of processing, by automatically converting commands into standard outputs, then into UTF-8 strings, then comparing them as strings:
474474

475475
```rust
476-
assert_command_eq2!(command1, command2);
476+
assert_command_eq!(command1, command2);
477477
```
478478

479479
Rust `assertables` provides these macros for commands and standard output:
480480

481-
* assert_command_stdout_eq2.rs
481+
* assert_command_stdout_eq.rs
482482
* assert_command_stdout_eq_other.rs
483483
* assert_command_stdout_contains.rs
484484
* assert_command_stdout_is_match.rs
485485

486486
Rust `assertables` provides these macros for commands and standard error:
487487

488-
* assert_command_stderr_eq2.rs
488+
* assert_command_stderr_eq.rs
489489
* assert_command_stderr_eq_other.rs
490490
* assert_command_stderr_contains.rs
491491
* assert_command_stderr_is_match.rs
@@ -501,26 +501,26 @@ let mut command = Command::new("printf");
501501
command.args(["%s", "hello"]);
502502
```
503503

504-
The previous section showed that Rust `assertables` provides the macro `assert_command_stdout_eq2!` such as:
504+
The previous section showed that Rust `assertables` provides the macro `assert_command_stdout_eq!` such as:
505505

506506
```rust
507507
use std::process::Command;
508508
let mut command1 = Command::new("printf");
509509
command1.args(["%s", "hello"]);
510510
let mut command2 = Command::new("printf");
511511
command2.args(["%s", "hello"]);
512-
assert_command_eq2!(string1, string2);
512+
assert_command_eq!(string1, string2);
513513
```
514514

515-
Rust `assertables` provides the macro `assert_program_args_eq2` that does the same kind of processing, by automatically converting programs and args into commands, then to standard outputs, then into UTF-8 stringss, then comparing them as strings:
515+
Rust `assertables` provides the macro `assert_program_args_eq` that does the same kind of processing, by automatically converting programs and args into commands, then to standard outputs, then into UTF-8 stringss, then comparing them as strings:
516516

517517
```rust
518-
assert_program_args_eq2!("printf", ["%s", "hello"], "printf", ["%s", "hello"]);
518+
assert_program_args_eq!("printf", ["%s", "hello"], "printf", ["%s", "hello"]);
519519
```
520520

521521
Rust `assertables` provides these macros for program args and standard output:
522522

523-
* `assert_program_args_stdout_eq2!`
523+
* `assert_program_args_stdout_eq!`
524524

525525
* `assert_program_args_stdout_eq_other!`
526526

@@ -530,7 +530,7 @@ Rust `assertables` provides these macros for program args and standard output:
530530

531531
Rust `assertables` provides these macros for program args and standard error:
532532

533-
* `assert_program_args_stderr_eq2!`
533+
* `assert_program_args_stderr_eq!`
534534

535535
* `assert_program_args_stderr_eq_other!`
536536

doc/lib/all.html

+1-1
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="Assert an absolute difference is equal to a delta expression."><title>lib::assert_abs_diff::assert_abs_diff_eq - Rust</title><script>if(window.location.protocol!=="file:")document.head.insertAdjacentHTML("beforeend","SourceSerif4-Regular-46f98efaafac5295.ttf.woff2,FiraSans-Regular-018c141bf0843ffd.woff2,FiraSans-Medium-8f9a781e4970d388.woff2,SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2,SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2".split(",").map(f=>`<link rel="preload" as="font" type="font/woff2" crossorigin href="../../../static.files/${f}">`).join(""))</script><link rel="stylesheet" href="../../../static.files/normalize-76eba96aa4d2e634.css"><link rel="stylesheet" href="../../../static.files/rustdoc-492a78a4a87dcc01.css"><meta name="rustdoc-vars" data-root-path="../../../" data-static-root-path="../../../static.files/" data-current-crate="lib" data-themes="" data-resource-suffix="" data-rustdoc-version="1.82.0 (f6e511eec 2024-10-15)" data-channel="1.82.0" data-search-js="search-a99f1315e7cc5121.js" data-settings-js="settings-4313503d2e1961c2.js" ><script src="../../../static.files/storage-118b08c4c78b968e.js"></script><script defer src="../sidebar-items.js"></script><script defer src="../../../static.files/main-921df33f47b8780c.js"></script><noscript><link rel="stylesheet" href="../../../static.files/noscript-3b12f09e550e0385.css"></noscript><link rel="alternate icon" type="image/png" href="../../../static.files/favicon-32x32-422f7d1d52889060.png"><link rel="icon" type="image/svg+xml" href="../../../static.files/favicon-2c020d218678b618.svg"></head><body class="rustdoc mod"><!--[if lte IE 11]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="mobile-topbar"><button class="sidebar-menu-toggle" title="show sidebar"></button></nav><nav class="sidebar"><div class="sidebar-crate"><h2><a href="../../../lib/index.html">lib</a></h2></div><h2 class="location"><a href="#">Module assert_<wbr>abs_<wbr>diff_<wbr>eq</a></h2><div class="sidebar-elems"><h2><a href="../index.html">In lib::<wbr>assert_<wbr>abs_<wbr>diff</a></h2></div></nav><div class="sidebar-resizer"></div><main><div class="width-limiter"><rustdoc-search></rustdoc-search><section id="main-content" class="content"><div class="main-heading"><h1>Module <a href="../../index.html">lib</a>::<wbr><a href="../index.html">assert_abs_diff</a>::<wbr><a class="mod" href="#">assert_abs_diff_eq</a><button id="copy-path" title="Copy item path to clipboard">Copy item path</button></h1><span class="out-of-band"><a class="src" href="../../../src/lib/assert_abs_diff/assert_abs_diff_eq.rs.html#1-261">source</a> · <button id="toggle-all-docs" title="collapse all docs">[<span>&#x2212;</span>]</button></span></div><details class="toggle top-doc" open><summary class="hideme"><span>Expand description</span></summary><div class="docblock"><p>Assert an absolute difference is equal to a delta expression.</p>
2+
<p>Pseudocode:<br>
3+
| a - b | = Δ</p>
4+
<h2 id="example"><a class="doc-anchor" href="#example">§</a>Example</h2>
5+
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>assertables::<span class="kw-2">*</span>;
6+
7+
<span class="kw">let </span>a = <span class="number">10</span>;
8+
<span class="kw">let </span>b = <span class="number">13</span>;
9+
<span class="kw">let </span>delta = <span class="number">3</span>;
10+
<span class="macro">assert_abs_diff_eq!</span>(a, b, delta);</code></pre></div>
11+
<h2 id="module-macros"><a class="doc-anchor" href="#module-macros">§</a>Module macros</h2>
12+
<ul>
13+
<li><a href="../../macro.assert_abs_diff_eq.html" title="macro lib::assert_abs_diff_eq"><code>assert_abs_diff_eq</code></a></li>
14+
<li><a href="../../macro.assert_abs_diff_eq_as_result.html" title="macro lib::assert_abs_diff_eq_as_result"><code>assert_abs_diff_eq_as_result</code></a></li>
15+
<li><a href="../../macro.debug_assert_abs_diff_eq.html" title="macro lib::debug_assert_abs_diff_eq"><code>debug_assert_abs_diff_eq</code></a></li>
16+
</ul>
17+
</div></details></section></div></main></body></html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="Assert an absolute difference is greater than or equal to a delta expression."><title>lib::assert_abs_diff::assert_abs_diff_ge - Rust</title><script>if(window.location.protocol!=="file:")document.head.insertAdjacentHTML("beforeend","SourceSerif4-Regular-46f98efaafac5295.ttf.woff2,FiraSans-Regular-018c141bf0843ffd.woff2,FiraSans-Medium-8f9a781e4970d388.woff2,SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2,SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2".split(",").map(f=>`<link rel="preload" as="font" type="font/woff2" crossorigin href="../../../static.files/${f}">`).join(""))</script><link rel="stylesheet" href="../../../static.files/normalize-76eba96aa4d2e634.css"><link rel="stylesheet" href="../../../static.files/rustdoc-492a78a4a87dcc01.css"><meta name="rustdoc-vars" data-root-path="../../../" data-static-root-path="../../../static.files/" data-current-crate="lib" data-themes="" data-resource-suffix="" data-rustdoc-version="1.82.0 (f6e511eec 2024-10-15)" data-channel="1.82.0" data-search-js="search-a99f1315e7cc5121.js" data-settings-js="settings-4313503d2e1961c2.js" ><script src="../../../static.files/storage-118b08c4c78b968e.js"></script><script defer src="../sidebar-items.js"></script><script defer src="../../../static.files/main-921df33f47b8780c.js"></script><noscript><link rel="stylesheet" href="../../../static.files/noscript-3b12f09e550e0385.css"></noscript><link rel="alternate icon" type="image/png" href="../../../static.files/favicon-32x32-422f7d1d52889060.png"><link rel="icon" type="image/svg+xml" href="../../../static.files/favicon-2c020d218678b618.svg"></head><body class="rustdoc mod"><!--[if lte IE 11]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="mobile-topbar"><button class="sidebar-menu-toggle" title="show sidebar"></button></nav><nav class="sidebar"><div class="sidebar-crate"><h2><a href="../../../lib/index.html">lib</a></h2></div><h2 class="location"><a href="#">Module assert_<wbr>abs_<wbr>diff_<wbr>ge</a></h2><div class="sidebar-elems"><h2><a href="../index.html">In lib::<wbr>assert_<wbr>abs_<wbr>diff</a></h2></div></nav><div class="sidebar-resizer"></div><main><div class="width-limiter"><rustdoc-search></rustdoc-search><section id="main-content" class="content"><div class="main-heading"><h1>Module <a href="../../index.html">lib</a>::<wbr><a href="../index.html">assert_abs_diff</a>::<wbr><a class="mod" href="#">assert_abs_diff_ge</a><button id="copy-path" title="Copy item path to clipboard">Copy item path</button></h1><span class="out-of-band"><a class="src" href="../../../src/lib/assert_abs_diff/assert_abs_diff_ge.rs.html#1-247">source</a> · <button id="toggle-all-docs" title="collapse all docs">[<span>&#x2212;</span>]</button></span></div><details class="toggle top-doc" open><summary class="hideme"><span>Expand description</span></summary><div class="docblock"><p>Assert an absolute difference is greater than or equal to a delta expression.</p>
2+
<p>Pseudocode:<br>
3+
| a - b | ≥ Δ</p>
4+
<h2 id="example"><a class="doc-anchor" href="#example">§</a>Example</h2>
5+
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>assertables::<span class="kw-2">*</span>;
6+
7+
<span class="kw">let </span>a = <span class="number">10</span>;
8+
<span class="kw">let </span>b = <span class="number">13</span>;
9+
<span class="kw">let </span>delta = <span class="number">2</span>;
10+
<span class="macro">assert_abs_diff_ge!</span>(a, b, delta);</code></pre></div>
11+
<h2 id="module-macros"><a class="doc-anchor" href="#module-macros">§</a>Module macros</h2>
12+
<ul>
13+
<li><a href="../../macro.assert_abs_diff_ge.html" title="macro lib::assert_abs_diff_ge"><code>assert_abs_diff_ge</code></a></li>
14+
<li><a href="../../macro.assert_abs_diff_ge_as_result.html" title="macro lib::assert_abs_diff_ge_as_result"><code>assert_abs_diff_ge_as_result</code></a></li>
15+
<li><a href="../../macro.debug_assert_abs_diff_ge.html" title="macro lib::debug_assert_abs_diff_ge"><code>debug_assert_abs_diff_ge</code></a></li>
16+
</ul>
17+
</div></details></section></div></main></body></html>

0 commit comments

Comments
 (0)