Skip to content
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
KrzysztofCwalina committed Dec 15, 2017
1 parent 48f5e45 commit 7c45655
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/System.Buffers.Experimental/System/Range.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ public void Deconstruct(out int first, out int end)
first = First;
end = End;
}

public static Range Construct(int first, int end)
=> new Range(first, end);

Expand Down Expand Up @@ -115,8 +116,6 @@ public bool IsValid(int length)
if (First > length) return false;
return End <= length;
}

throw new NotImplementedException();
}

public Range Bind(int length)
Expand Down

0 comments on commit 7c45655

Please sign in to comment.