8 references to TryGetLast
System.Linq (8)
System\Linq\AppendPrepend.SpeedOpt.cs (1)
152TSource? last = _source.TryGetLast(out found);
System\Linq\Concat.SpeedOpt.cs (3)
143TSource? result = _second.TryGetLast(out found); 146result = _first.TryGetLast(out found); 334result = node._head.TryGetLast(out found);
System\Linq\DefaultIfEmpty.SpeedOpt.cs (1)
59TSource? last = _source.TryGetLast(out found);
System\Linq\Last.cs (3)
13TSource? last = source.TryGetLast(out bool found); 34source.TryGetLast(out _); 44TSource? last = source.TryGetLast(out bool found);