c# - 如何使用 Linq 表达式树从 Span<T> 中获取值?

标签 c# linq expression-trees

我想使用 Linq 表达式树来调用 Span<T> 的索引器.代码如下:

var spanGetter = typeof(Span<>)
    .MakeGenericType(typeof(float)).GetMethod("get_Item");

var myFloatSpan = Expression.Parameter(typeof(Span<float>), "s");

var myValue = Expression.Call(
    myFloatSpan,
    spanGetter,
    Expression.Constant(42));

var myAdd = Expression.Add(
    myValue,
    Expression.Constant(13f));    

然而,这段代码失败了,因为 myValue类型为 Single& (又名 ref struct )而不是类型 Single (又名 struct)。

如何评估 Span<T>来自表达式树?

最佳答案

我有一个解决方案,但它远非理想,如您所见。我们重新使用 C# 语法糖引擎。

class Program
{
    static void Main(string[] args)
    {
        var spanGetter = typeof(Program).GetMethod("GetItem").MakeGenericMethod(typeof(float));

        var myFloatSpan = Expression.Parameter(typeof(Span<float>), "s");

        var myValue = Expression.Call(
            null,
            spanGetter,
            myFloatSpan,
            Expression.Constant(42));

        var myAdd = Expression.Add(
            myValue,
            Expression.Constant(13f));

        var expr = Expression.Lambda<MyFunc>(myAdd, myFloatSpan).Compile();

        var span = new Span<float>(new float[43]);
        span[42] = 12.3456f;
        Console.WriteLine(expr(span)); // -> 25.3456
    }

    // hopefully, this shouldn't be too bad in terms of performance...
    // C# knows how to do compile this, while Linq Expressions doesn't
    public static T GetItem<T>(Span<T> span, int index) => span[index];

    // we need that because we can't use a Span<T> directly with Func<T>
    // we could make it generic also I guess
    public delegate float MyFunc(Span<float> span);
}

关于c# - 如何使用 Linq 表达式树从 Span<T> 中获取值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52112628/

相关文章:

c# - 使用表达式树创建完全动态的 where 子句并在 IQueryable 上执行

c# - 表达式树中的简单 Where 子句

c# - 分析 Linq 表达式

C# 文件夹浏览器对话框 : Getting only the selected folder's name

c# - 来自具有最佳性能的 C++ 应用程序的 API

c# - CodePlex 对表达式树序列化库的看法?

javascript - $.ajax 成功 : value is always undefined

c# - 带有重复项的日历

c# - 如何知道网络接口(interface)何时在 C# 中使用路由器作为 DNS 服务器?

c# - 如何将 GridView 绑定(bind)到复杂对象