Skip to content

[WIP] Lambda #1

@pjc0247

Description

@pjc0247

Supprting a lambda expression has high priority on task queue.
Current status is partially implemented.

Below code works

list.Any((int x) => { return x > 2; });

And these are won't work

// implicit lambda parameter
list.Any((x) => { return x > 2; });

// lambda with arrow body
list.Any((int x) => x > 2);

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions