Click or drag to resize
EnumerableExMemoize Method
Overload List
  NameDescription
Public methodStatic memberCode exampleMemoizeTSource(IEnumerableTSource)
Creates a buffer with a view over the source sequence, causing each enumerator to obtain access to all of the sequence's elements without causing multiple enumerations over the source.
Public methodStatic memberMemoizeTSource, TResult(IEnumerableTSource, FuncIEnumerableTSource, IEnumerableTResult)
Memoizes the source sequence within a selector function where each enumerator can get access to all of the sequence's elements without causing multiple enumerations over the source.
Public methodStatic memberMemoizeTSource(IEnumerableTSource, Int32)
Creates a buffer with a view over the source sequence, causing a specified number of enumerators to obtain access to all of the sequence's elements without causing multiple enumerations over the source.
Public methodStatic memberMemoizeTSource, TResult(IEnumerableTSource, Int32, FuncIEnumerableTSource, IEnumerableTResult)
Memoizes the source sequence within a selector function where a specified number of enumerators can get access to all of the sequence's elements without causing multiple enumerations over the source.
Top
See Also