-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBitShiftDirection.cs
More file actions
29 lines (25 loc) · 987 Bytes
/
BitShiftDirection.cs
File metadata and controls
29 lines (25 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// =================================================================================================================================
// Copyright (c) RapidField LLC. Licensed under the MIT License. See LICENSE.txt in the project root for license information.
// =================================================================================================================================
using System;
namespace RapidField.SolidInstruments.Core
{
/// <summary>
/// Specifies a direction (left or right) to shift bits in a bit field.
/// </summary>
public enum BitShiftDirection : Int32
{
/// <summary>
/// The bit shift direction is not specified.
/// </summary>
Unspecified = 0,
/// <summary>
/// Bits in the field are shifted to the left.
/// </summary>
Left = 1,
/// <summary>
/// Bits in the field are shifted to the right.
/// </summary>
Right = 2
}
}