How can I use yield return in this function?
I am refactoring my source code, which previously used List<T>
, to make it memoryless by introducing IEnumerable<T>
and yield return
so that my source code can handle bigdata.
I am refactoring my source code, which previously used List<T>
, to make it memoryless by introducing IEnumerable<T>
and yield return
so that my source code can handle bigdata.