xshade-lang / xshade

"cross shade" meta shading language and compiler

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Parametric Polymorphism

Vengarioth opened this issue · comments

commented

Syntax proposal : Parametric Polymorphism

Summary

Also known as generics or templates.

Examples

A struct type which takes in a type parameter:

struct MyStruct<T> {
    foo: T,
}

References