1 instantiation of MemoizedFunction
Shared (1)
Memoization\Memoize.cs (1)
59
=> new
MemoizedFunction
<TParameter1, TParameter2, TResult>(f).Function;
4 references to MemoizedFunction
Shared (4)
Memoization\MemoizedFunction.cs (4)
107
internal readonly struct Args : IEquatable<
MemoizedFunction
<TParameter1, TParameter2, TResult>.Args>
122
public override bool Equals(object? obj) => obj is
MemoizedFunction
<TParameter1, TParameter2, TResult>.Args args && Equals(args);
124
public bool Equals(
MemoizedFunction
<TParameter1, TParameter2, TResult>.Args other) =>
136
/// Initializes a new instance of the <see cref="
MemoizedFunction
{TParameter1, TParameter2, TResult}"/> class.