mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-01-11 22:29:58 +00:00
14 lines
407 B
C#
14 lines
407 B
C#
|
namespace EightBit
|
|||
|
{
|
|||
|
public static class PinLevelExtensions
|
|||
|
{
|
|||
|
public static bool Raised(this PinLevel line) => line == PinLevel.High;
|
|||
|
|
|||
|
public static bool Lowered(this PinLevel line) => line == PinLevel.Low;
|
|||
|
|
|||
|
public static void Raise(this ref PinLevel line) => line = PinLevel.High;
|
|||
|
|
|||
|
public static void Lower(this ref PinLevel line) => line = PinLevel.Low;
|
|||
|
}
|
|||
|
}
|