6 references to Slice
Microsoft.CodeAnalysis.UnitTests (6)
Collections\List\SegmentedList.Generic.Tests.Misc.cs (6)
216
SegmentedList<T> range = useSlice ? list.
Slice
(index, count) : list.GetRange(index, count);
234
SegmentedList<T> range = list
[
index..(index + count)];
252
SegmentedList<T> range = useSlice ? list
[
index..(index + count)] : list.GetRange(index, count);
261
SegmentedList<T> range = useSlice ? list
[
index..(index + count)] : list.GetRange(index, count);
309
return useSlice ? list.
Slice
(index, count) : list.GetRange(index, count);
336
return useSlice ? list.
Slice
(index, count) : list.GetRange(index, count);