@@ -49,6 +49,8 @@ impl f32 {
49
49
50
50
/// Returns the largest integer less than or equal to a number.
51
51
///
52
+ /// # Examples
53
+ ///
52
54
/// ```
53
55
/// let f = 3.99_f32;
54
56
/// let g = 3.0_f32;
@@ -80,6 +82,8 @@ impl f32 {
80
82
81
83
/// Returns the smallest integer greater than or equal to a number.
82
84
///
85
+ /// # Examples
86
+ ///
83
87
/// ```
84
88
/// let f = 3.01_f32;
85
89
/// let g = 4.0_f32;
@@ -100,6 +104,8 @@ impl f32 {
100
104
/// Returns the nearest integer to a number. Round half-way cases away from
101
105
/// `0.0`.
102
106
///
107
+ /// # Examples
108
+ ///
103
109
/// ```
104
110
/// let f = 3.3_f32;
105
111
/// let g = -3.3_f32;
@@ -115,6 +121,8 @@ impl f32 {
115
121
116
122
/// Returns the integer part of a number.
117
123
///
124
+ /// # Examples
125
+ ///
118
126
/// ```
119
127
/// let f = 3.3_f32;
120
128
/// let g = -3.7_f32;
@@ -130,6 +138,8 @@ impl f32 {
130
138
131
139
/// Returns the fractional part of a number.
132
140
///
141
+ /// # Examples
142
+ ///
133
143
/// ```
134
144
/// use std::f32;
135
145
///
@@ -148,6 +158,8 @@ impl f32 {
148
158
/// Computes the absolute value of `self`. Returns `NAN` if the
149
159
/// number is `NAN`.
150
160
///
161
+ /// # Examples
162
+ ///
151
163
/// ```
152
164
/// use std::f32;
153
165
///
@@ -174,6 +186,8 @@ impl f32 {
174
186
/// - `-1.0` if the number is negative, `-0.0` or `NEG_INFINITY`
175
187
/// - `NAN` if the number is `NAN`
176
188
///
189
+ /// # Examples
190
+ ///
177
191
/// ```
178
192
/// use std::f32;
179
193
///
@@ -200,6 +214,8 @@ impl f32 {
200
214
/// Using `mul_add` can be more performant than an unfused multiply-add if
201
215
/// the target architecture has a dedicated `fma` CPU instruction.
202
216
///
217
+ /// # Examples
218
+ ///
203
219
/// ```
204
220
/// use std::f32;
205
221
///
@@ -225,6 +241,8 @@ impl f32 {
225
241
/// In other words, the result is `self / rhs` rounded to the integer `n`
226
242
/// such that `self >= n * rhs`.
227
243
///
244
+ /// # Examples
245
+ ///
228
246
/// ```
229
247
/// #![feature(euclidean_division)]
230
248
/// let a: f32 = 7.0;
@@ -248,6 +266,8 @@ impl f32 {
248
266
///
249
267
/// In particular, the result `n` satisfies `0 <= n < rhs.abs()`.
250
268
///
269
+ /// # Examples
270
+ ///
251
271
/// ```
252
272
/// #![feature(euclidean_division)]
253
273
/// let a: f32 = 7.0;
@@ -273,6 +293,8 @@ impl f32 {
273
293
///
274
294
/// Using this function is generally faster than using `powf`
275
295
///
296
+ /// # Examples
297
+ ///
276
298
/// ```
277
299
/// use std::f32;
278
300
///
@@ -289,6 +311,8 @@ impl f32 {
289
311
290
312
/// Raises a number to a floating point power.
291
313
///
314
+ /// # Examples
315
+ ///
292
316
/// ```
293
317
/// use std::f32;
294
318
///
@@ -311,6 +335,8 @@ impl f32 {
311
335
///
312
336
/// Returns NaN if `self` is a negative number.
313
337
///
338
+ /// # Examples
339
+ ///
314
340
/// ```
315
341
/// use std::f32;
316
342
///
@@ -334,6 +360,8 @@ impl f32 {
334
360
335
361
/// Returns `e^(self)`, (the exponential function).
336
362
///
363
+ /// # Examples
364
+ ///
337
365
/// ```
338
366
/// use std::f32;
339
367
///
@@ -358,6 +386,8 @@ impl f32 {
358
386
359
387
/// Returns `2^(self)`.
360
388
///
389
+ /// # Examples
390
+ ///
361
391
/// ```
362
392
/// use std::f32;
363
393
///
@@ -376,6 +406,8 @@ impl f32 {
376
406
377
407
/// Returns the natural logarithm of the number.
378
408
///
409
+ /// # Examples
410
+ ///
379
411
/// ```
380
412
/// use std::f32;
381
413
///
@@ -404,6 +436,8 @@ impl f32 {
404
436
/// `self.log2()` can produce more accurate results for base 2, and
405
437
/// `self.log10()` can produce more accurate results for base 10.
406
438
///
439
+ /// # Examples
440
+ ///
407
441
/// ```
408
442
/// use std::f32;
409
443
///
@@ -420,6 +454,8 @@ impl f32 {
420
454
421
455
/// Returns the base 2 logarithm of the number.
422
456
///
457
+ /// # Examples
458
+ ///
423
459
/// ```
424
460
/// use std::f32;
425
461
///
@@ -441,6 +477,8 @@ impl f32 {
441
477
442
478
/// Returns the base 10 logarithm of the number.
443
479
///
480
+ /// # Examples
481
+ ///
444
482
/// ```
445
483
/// use std::f32;
446
484
///
@@ -466,6 +504,8 @@ impl f32 {
466
504
/// * If `self <= other`: `0:0`
467
505
/// * Else: `self - other`
468
506
///
507
+ /// # Examples
508
+ ///
469
509
/// ```
470
510
/// use std::f32;
471
511
///
@@ -493,6 +533,8 @@ impl f32 {
493
533
494
534
/// Takes the cubic root of a number.
495
535
///
536
+ /// # Examples
537
+ ///
496
538
/// ```
497
539
/// use std::f32;
498
540
///
@@ -512,6 +554,8 @@ impl f32 {
512
554
/// Calculates the length of the hypotenuse of a right-angle triangle given
513
555
/// legs of length `x` and `y`.
514
556
///
557
+ /// # Examples
558
+ ///
515
559
/// ```
516
560
/// use std::f32;
517
561
///
@@ -531,6 +575,8 @@ impl f32 {
531
575
532
576
/// Computes the sine of a number (in radians).
533
577
///
578
+ /// # Examples
579
+ ///
534
580
/// ```
535
581
/// use std::f32;
536
582
///
@@ -552,6 +598,8 @@ impl f32 {
552
598
553
599
/// Computes the cosine of a number (in radians).
554
600
///
601
+ /// # Examples
602
+ ///
555
603
/// ```
556
604
/// use std::f32;
557
605
///
@@ -573,6 +621,8 @@ impl f32 {
573
621
574
622
/// Computes the tangent of a number (in radians).
575
623
///
624
+ /// # Examples
625
+ ///
576
626
/// ```
577
627
/// use std::f32;
578
628
///
@@ -591,6 +641,8 @@ impl f32 {
591
641
/// the range [-pi/2, pi/2] or NaN if the number is outside the range
592
642
/// [-1, 1].
593
643
///
644
+ /// # Examples
645
+ ///
594
646
/// ```
595
647
/// use std::f32;
596
648
///
@@ -611,6 +663,8 @@ impl f32 {
611
663
/// the range [0, pi] or NaN if the number is outside the range
612
664
/// [-1, 1].
613
665
///
666
+ /// # Examples
667
+ ///
614
668
/// ```
615
669
/// use std::f32;
616
670
///
@@ -630,6 +684,8 @@ impl f32 {
630
684
/// Computes the arctangent of a number. Return value is in radians in the
631
685
/// range [-pi/2, pi/2];
632
686
///
687
+ /// # Examples
688
+ ///
633
689
/// ```
634
690
/// use std::f32;
635
691
///
@@ -653,6 +709,8 @@ impl f32 {
653
709
/// * `y >= 0`: `arctan(y/x) + pi` -> `(pi/2, pi]`
654
710
/// * `y < 0`: `arctan(y/x) - pi` -> `(-pi, -pi/2)`
655
711
///
712
+ /// # Examples
713
+ ///
656
714
/// ```
657
715
/// use std::f32;
658
716
///
@@ -682,6 +740,8 @@ impl f32 {
682
740
/// Simultaneously computes the sine and cosine of the number, `x`. Returns
683
741
/// `(sin(x), cos(x))`.
684
742
///
743
+ /// # Examples
744
+ ///
685
745
/// ```
686
746
/// use std::f32;
687
747
///
@@ -703,6 +763,8 @@ impl f32 {
703
763
/// Returns `e^(self) - 1` in a way that is accurate even if the
704
764
/// number is close to zero.
705
765
///
766
+ /// # Examples
767
+ ///
706
768
/// ```
707
769
/// use std::f32;
708
770
///
@@ -722,6 +784,8 @@ impl f32 {
722
784
/// Returns `ln(1+n)` (natural logarithm) more accurately than if
723
785
/// the operations were performed separately.
724
786
///
787
+ /// # Examples
788
+ ///
725
789
/// ```
726
790
/// use std::f32;
727
791
///
@@ -740,6 +804,8 @@ impl f32 {
740
804
741
805
/// Hyperbolic sine function.
742
806
///
807
+ /// # Examples
808
+ ///
743
809
/// ```
744
810
/// use std::f32;
745
811
///
@@ -761,6 +827,8 @@ impl f32 {
761
827
762
828
/// Hyperbolic cosine function.
763
829
///
830
+ /// # Examples
831
+ ///
764
832
/// ```
765
833
/// use std::f32;
766
834
///
@@ -782,6 +850,8 @@ impl f32 {
782
850
783
851
/// Hyperbolic tangent function.
784
852
///
853
+ /// # Examples
854
+ ///
785
855
/// ```
786
856
/// use std::f32;
787
857
///
@@ -803,6 +873,8 @@ impl f32 {
803
873
804
874
/// Inverse hyperbolic sine function.
805
875
///
876
+ /// # Examples
877
+ ///
806
878
/// ```
807
879
/// use std::f32;
808
880
///
@@ -825,6 +897,8 @@ impl f32 {
825
897
826
898
/// Inverse hyperbolic cosine function.
827
899
///
900
+ /// # Examples
901
+ ///
828
902
/// ```
829
903
/// use std::f32;
830
904
///
@@ -846,6 +920,8 @@ impl f32 {
846
920
847
921
/// Inverse hyperbolic tangent function.
848
922
///
923
+ /// # Examples
924
+ ///
849
925
/// ```
850
926
/// use std::f32;
851
927
///
0 commit comments