mirror of
https://github.com/sphildreth/roadie
synced 2024-11-23 04:33:16 +00:00
18 lines
No EOL
646 B
C#
18 lines
No EOL
646 B
C#
namespace Roadie.Library.Extensions
|
|
{
|
|
public static class ShortExt
|
|
{
|
|
public static short? Or(this short? value, short? alternative)
|
|
{
|
|
if (!value.HasValue && !alternative.HasValue) return null;
|
|
return value.HasValue ? value : alternative;
|
|
}
|
|
|
|
public static short? TakeLarger(this short? value, short? alternative)
|
|
{
|
|
if (!value.HasValue && !alternative.HasValue) return null;
|
|
if (!value.HasValue && alternative.HasValue) return alternative.Value;
|
|
return value.Value > alternative.Value ? value.Value : alternative.Value;
|
|
}
|
|
}
|
|
} |