Da gibt es unterschiedliche Auffassungen.
Im Englischen:
- Func f = x => x * 2;
”x goes to x * 2”
”x maps to x * 2”
”x becomes x * 2”
”x induces x * 2” - Func test = c => c.City == "London";
"c for which c.City equals London"
Im Deutschen:
- Func f = x => x * 2;
”x wird abgebildet auf x + 2”
”x wechselt zu x * 2”