Update Value class method signature

x) Changed generic type parameter from T to U in the Get method.
This commit is contained in:
Marc Hernandez 2024-06-18 15:27:46 -07:00
parent c98db058be
commit bf7e47e532

View File

@ -36,7 +36,7 @@ N O T D O I N G :
public record struct Value<T>( T _val = default, string _exp = "" )
{
static public Value<T> Get<T>( T v,
static public Value<U> Get<U>( U v,
[CallerArgumentExpression("fn")]
string dbgExp = ""
)