@@ -63,15 +63,15 @@ impl Float for f8 {
63
63
}
64
64
65
65
fn exp ( self ) -> Self :: ExpInt {
66
- todo ! ( )
66
+ unimplemented ! ( )
67
67
}
68
68
69
69
fn from_bits ( a : Self :: Int ) -> Self {
70
70
Self ( a)
71
71
}
72
72
73
73
fn normalize ( _significand : Self :: Int ) -> ( i32 , Self :: Int ) {
74
- todo ! ( )
74
+ unimplemented ! ( )
75
75
}
76
76
}
77
77
@@ -357,26 +357,26 @@ impl f8 {
357
357
impl ops:: Add for f8 {
358
358
type Output = Self ;
359
359
fn add ( self , _rhs : Self ) -> Self :: Output {
360
- todo ! ( )
360
+ unimplemented ! ( )
361
361
}
362
362
}
363
363
364
364
impl ops:: Sub for f8 {
365
365
type Output = Self ;
366
366
fn sub ( self , _rhs : Self ) -> Self :: Output {
367
- todo ! ( )
367
+ unimplemented ! ( )
368
368
}
369
369
}
370
370
impl ops:: Mul for f8 {
371
371
type Output = Self ;
372
372
fn mul ( self , _rhs : Self ) -> Self :: Output {
373
- todo ! ( )
373
+ unimplemented ! ( )
374
374
}
375
375
}
376
376
impl ops:: Div for f8 {
377
377
type Output = Self ;
378
378
fn div ( self , _rhs : Self ) -> Self :: Output {
379
- todo ! ( )
379
+ unimplemented ! ( )
380
380
}
381
381
}
382
382
@@ -390,25 +390,25 @@ impl ops::Neg for f8 {
390
390
impl ops:: Rem for f8 {
391
391
type Output = Self ;
392
392
fn rem ( self , _rhs : Self ) -> Self :: Output {
393
- todo ! ( )
393
+ unimplemented ! ( )
394
394
}
395
395
}
396
396
397
397
impl ops:: AddAssign for f8 {
398
398
fn add_assign ( & mut self , _rhs : Self ) {
399
- todo ! ( )
399
+ unimplemented ! ( )
400
400
}
401
401
}
402
402
403
403
impl ops:: SubAssign for f8 {
404
404
fn sub_assign ( & mut self , _rhs : Self ) {
405
- todo ! ( )
405
+ unimplemented ! ( )
406
406
}
407
407
}
408
408
409
409
impl ops:: MulAssign for f8 {
410
410
fn mul_assign ( & mut self , _rhs : Self ) {
411
- todo ! ( )
411
+ unimplemented ! ( )
412
412
}
413
413
}
414
414
@@ -459,7 +459,7 @@ impl cmp::PartialOrd for f8 {
459
459
}
460
460
impl fmt:: Display for f8 {
461
461
fn fmt ( & self , _f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
462
- todo ! ( )
462
+ unimplemented ! ( )
463
463
}
464
464
}
465
465
0 commit comments