Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Операции над функциями #160

Open
impworks opened this issue May 28, 2014 · 0 comments
Open

Операции над функциями #160

impworks opened this issue May 28, 2014 · 0 comments
Assignees
Milestone

Comments

@impworks
Copy link
Owner

Допустим, есть две функции, по которым нужно отфильтровать последовательность. Сейчас это делается так:

1.to 100
  |> Where func1
  |> Where func2

Было бы удобно писать, например, так:

1.to 100
  |> Where (func1 && func2)

Таким образом, если есть две функции с одинаковыми входными параметрами и оператор определен для их выходных параметров, то результатом является новая функция:

var x : Func<T1, T2, T3>
var y : Func<T1, T2, T3>

x && y
// эквивалентно
(arg1:T1 arg2:T2) -> (x arg1 arg2) && (y arg1 arg2)
@impworks impworks added this to the Backlog milestone May 28, 2014
@impworks impworks added the task label May 28, 2014
@impworks impworks self-assigned this May 28, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant