Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Commit

Permalink
Fix a couple System.Memory ref mistakes. (#33383)
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyKuhne authored and jkotas committed Nov 12, 2018
1 parent 0817782 commit 9ae14ba
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/System.Memory/ref/System.Memory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ public static void Reverse<T>(this System.Span<T> span) { }
private readonly object _dummy;
private readonly int _dummyPrimitive;
public SequencePosition(object @object, int integer) { throw null; }
[System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
public override bool Equals(object obj) { throw null; }
public bool Equals(System.SequencePosition other) { throw null; }
[System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
Expand Down Expand Up @@ -194,7 +195,7 @@ public static partial class SequenceReaderExtensions
}
public ref partial struct SequenceReader<T> where T : unmanaged, System.IEquatable<T>
{
public SequenceReader(System.Buffers.ReadOnlySequence<T> buffer) { throw null; }
public SequenceReader(System.Buffers.ReadOnlySequence<T> sequence) { throw null; }
public long Consumed { get { throw null; } }
public System.ReadOnlySpan<T> CurrentSpan { get { throw null; } }
public int CurrentSpanIndex { get { throw null; } }
Expand Down

0 comments on commit 9ae14ba

Please sign in to comment.