@@ -6,7 +6,7 @@ namespace Utf8StringInterpolation;
6
6
7
7
public ref partial struct Utf8StringWriter < TBufferWriter >
8
8
{
9
- # if true
9
+ #if true
10
10
11
11
[ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
12
12
public void AppendFormatted( bool ? value , int alignment = 0 , string ? format = null )
@@ -1398,7 +1398,7 @@ void AppendFormattedAlignment(TimeSpan value, int alignment, string? format)
1398
1398
}
1399
1399
#endif
1400
1400
1401
- # if true
1401
+ #if true
1402
1402
1403
1403
[ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
1404
1404
public void AppendFormatted ( char ? value , int alignment = 0 , string ? format = null )
@@ -1485,4 +1485,83 @@ void AppendFormattedAlignment(char value, int alignment, string? format)
1485
1485
}
1486
1486
#endif
1487
1487
1488
+
1489
+ // `if typeof(T) == typeof()` will eliminate in JIT.
1490
+ public void AppendFormatted < T > ( T value , int alignment = 0 , string ? format = null )
1491
+ {
1492
+ if ( typeof ( T ) == typeof ( bool ) )
1493
+ {
1494
+ AppendFormatted ( Unsafe . As < T , bool > ( ref value ) , alignment , format ) ;
1495
+ }
1496
+ else if ( typeof ( T ) == typeof ( char ) )
1497
+ {
1498
+ AppendFormatted ( Unsafe . As < T , char > ( ref value ) , alignment , format ) ;
1499
+ }
1500
+ #if ! NET8_0_OR_GREATER
1501
+ else if ( typeof ( T ) == typeof ( byte ) )
1502
+ {
1503
+ AppendFormatted ( Unsafe . As < T , byte > ( ref value ) , alignment , format ) ;
1504
+ }
1505
+ else if ( typeof ( T ) == typeof ( Decimal) )
1506
+ {
1507
+ AppendFormatted ( Unsafe . As < T , Decimal > ( ref value ) , alignment , format ) ;
1508
+ }
1509
+ else if ( typeof ( T ) == typeof ( Double) )
1510
+ {
1511
+ AppendFormatted ( Unsafe . As < T , Double > ( ref value ) , alignment , format ) ;
1512
+ }
1513
+ else if ( typeof ( T ) == typeof ( Guid) )
1514
+ {
1515
+ AppendFormatted ( Unsafe . As < T , Guid > ( ref value ) , alignment , format ) ;
1516
+ }
1517
+ else if ( typeof ( T ) == typeof ( Int16) )
1518
+ {
1519
+ AppendFormatted ( Unsafe . As < T , Int16 > ( ref value ) , alignment , format ) ;
1520
+ }
1521
+ else if ( typeof ( T ) == typeof ( Int32) )
1522
+ {
1523
+ AppendFormatted ( Unsafe . As < T , Int32 > ( ref value ) , alignment , format ) ;
1524
+ }
1525
+ else if ( typeof ( T ) == typeof ( Int64) )
1526
+ {
1527
+ AppendFormatted ( Unsafe . As < T , Int64 > ( ref value ) , alignment , format ) ;
1528
+ }
1529
+ else if ( typeof ( T ) == typeof ( SByte) )
1530
+ {
1531
+ AppendFormatted ( Unsafe . As < T , SByte > ( ref value ) , alignment , format ) ;
1532
+ }
1533
+ else if ( typeof ( T ) == typeof ( Single) )
1534
+ {
1535
+ AppendFormatted ( Unsafe . As < T , Single > ( ref value ) , alignment , format ) ;
1536
+ }
1537
+ else if ( typeof ( T ) == typeof ( UInt16) )
1538
+ {
1539
+ AppendFormatted ( Unsafe . As < T , UInt16 > ( ref value ) , alignment , format ) ;
1540
+ }
1541
+ else if ( typeof ( T ) == typeof ( UInt32) )
1542
+ {
1543
+ AppendFormatted ( Unsafe . As < T , UInt32 > ( ref value ) , alignment , format ) ;
1544
+ }
1545
+ else if ( typeof ( T ) == typeof ( UInt64) )
1546
+ {
1547
+ AppendFormatted ( Unsafe . As < T , UInt64 > ( ref value ) , alignment , format ) ;
1548
+ }
1549
+ else if ( typeof ( T ) == typeof ( DateTime) )
1550
+ {
1551
+ AppendFormatted ( Unsafe . As < T , DateTime > ( ref value ) , alignment , format ) ;
1552
+ }
1553
+ else if ( typeof ( T ) == typeof ( DateTimeOffset ) )
1554
+ {
1555
+ AppendFormatted ( Unsafe . As < T , DateTimeOffset > ( ref value ) , alignment , format ) ;
1556
+ }
1557
+ else if ( typeof ( T ) == typeof ( TimeSpan) )
1558
+ {
1559
+ AppendFormatted ( Unsafe . As < T , TimeSpan > ( ref value ) , alignment , format ) ;
1560
+ }
1561
+ #endif
1562
+ else
1563
+ {
1564
+ AppendFormattedCore < T > ( value , alignment , format ) ;
1565
+ }
1566
+ }
1488
1567
}
0 commit comments