Skip to content

Extra cast required for array projection #125

@jaredlll08

Description

@jaredlll08
var x = [1, 2, 3] as int[];
var y = new int[]<int>(x, (value => value * 2) as function(value as int) as int);

ideallythis is just:

var x = [1, 2, 3] as int[];
var y = new int[]<int>(x, (value => value * 2));

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions