Code
·
50 lines
·
1578 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50// https://github.com/mattj23/InteractiveReadLine
#nullable disable
namespace InteractiveReadLine
{
/// <summary>
/// Contains the text and cursor position data produced by a user's interaction with the IReadLineProvider.
/// </summary>
public class LineState(string text, int cursor) : IEquatable<LineState>
{
/// <summary>
/// A string can implicitly be converted to a LineState, however the cursor position will be 0 by default.
/// </summary>
public static implicit operator LineState(string s) => new(s, 0);
/// <summary>
/// Gets the cursor position as an integer offset from the first character
/// </summary>
public int Cursor { get; } = cursor;
/// <summary>
/// Gets the string contents of the line of text
/// </summary>
public string Text { get; } = text;
public bool Equals(LineState other)
{
if (ReferenceEquals(null, other)) return false;
if (ReferenceEquals(this, other)) return true;
return Cursor == other.Cursor && Text == other.Text;
}
public override bool Equals(object obj)
{
if (ReferenceEquals(null, obj)) return false;
if (ReferenceEquals(this, obj)) return true;
if (obj.GetType() != this.GetType()) return false;
return Equals((LineState) obj);
}
public override int GetHashCode()
{
unchecked
{
return (Cursor * 397) ^ (Text != null ? Text.GetHashCode() : 0);
}
}
}
}