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

Ограниченные генерики #122

Open
impworks opened this issue Sep 8, 2013 · 0 comments
Open

Ограниченные генерики #122

impworks opened this issue Sep 8, 2013 · 0 comments
Assignees
Milestone

Comments

@impworks
Copy link
Owner

impworks commented Sep 8, 2013

При описании некоторых функций бывает необходимо сделать несколько переопределений метода, различающихся сигнатурой, но имеющих абсолютно одинаковые тела. Например:

fun add:int (x:int y:int) -> x + y
fun add:float (x:float y:float) -> x + y
fun add:long (x:long y:long) -> x + y
fun add:double (x:double y:double) -> x + y

Было бы удобно возложить такую обязанность на плечи компилятора, указав ему лишь типовую переменную и список ее возможных значений:

fun add<T>:T (x:T y:T)
where T: int || float || double || long ->
    x + y

В данном случае создастся не generic-функция (для обобщенного типа T не будет переопределения оператора +), а именно 4 отдельных функции.

Соответственно, типовых переменных может быть несколько. Тогда функций в итоге будет столько, сколько возможно сочетаний типов.

@ghost ghost assigned impworks Sep 8, 2013
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