We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e048a5a commit b729af0Copy full SHA for b729af0
docs/reference/api/platform/Span.md
@@ -57,9 +57,9 @@ Span<uint8_t> str_span(hello_mbed);
57
58
ptrdiff_t half_size = str_span.size() / 2;
59
60
-Span<uint8_t> first_half = str_span.first(half_size);
61
-Span<uint8_t> second_half = str_span.last(half_size);
62
-Span<uint8_t> middle_half = str_span.subspan(/* offset */ half_size / 2, half_size);
+Span<uint8_t> lower_half = str_span.first(half_size);
+Span<uint8_t> upper_half = str_span.last(half_size);
+Span<uint8_t> interquartile_range = str_span.subspan(/* offset */ half_size / 2, half_size);
63
```
64
65
### Size encoding
0 commit comments