gpt4 book ai didi

c# - 在 LINQ 中解构包含 ValueTuple 的容器

转载 作者:太空宇宙 更新时间:2023-11-03 12:11:12 27 4
gpt4 key购买 nike

我能够通过扩展方法解构容器:

var limits = new[] { MyEnum.A , MyEnum.B , MyEnum.C }
.ToDictionary( x => x ,
x => ( SupportedLimit: GetLimit( x ) , RequiredLimit: 0 ) );

public static class Extensions
{
public static void Deconstruct<TKey, TVal>(
this KeyValuePair<TKey , TVal> tuple ,
out TKey key , out TVal value )
{
key = tuple.Key;
value = tuple.Value;
}

public static void Deconstruct<TKey, TVal1, TVal2>(
this KeyValuePair<TKey , (TVal1,TVal2)> tuple ,
out TKey key , out TVal1 v1 , out TVal2 v2 )
{
key = tuple.Key;
(v1 , v2) = tuple.Value;
}
}

// works
foreach( var ( enumVal , supportedLimit , requiredLimit ) in limits )
Debugger.Break();

如何在 LINQ 中解构包含 System.ValueTuple 的容器/字典?

// won't work, .Where() expects Func<T,bool> not Func<T1,T2,T3,bool>

var failedLimits = limits.Where( ( _ , sup , req ) => sup < req );

我只是想知道如何(以及是否)可以在(任何)LINQ 方法中解构 ValueTuple。我想我必须为每个 Linq 方法(类似列表)添加一个扩展方法 + 字典的重载 + ValueTuple 中的每个值。示例中的 Where() 会是什么样子?

最佳答案

public static class LinqExtensions
{
public static IEnumerable<KeyValuePair<TKey,(T1,T2)>> Where<TKey,T1,T2>(
this IEnumerable<KeyValuePair<TKey,(T1,T2)>> source ,
Func<TKey,T1,T2, Boolean> predicate )
=> source.Where( predicate );
}
  • 类列表类型的重载 + 每个 ValueTuple 参数的数量

关于c# - 在 LINQ 中解构包含 ValueTuple 的容器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52223591/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com