Add generics example

This commit is contained in:
laurens 2020-06-29 17:25:16 +02:00
parent 4c4b703928
commit 7e6403bd93
2 changed files with 43 additions and 0 deletions

34
generics/src/main.rs Normal file
View file

@ -0,0 +1,34 @@
struct Point<T, U> {
x: T,
y: U,
}
impl<T, U> Point<T, U> {
// Different types of Point's
fn mixup<V, W>(self, other: Point<V, W>) -> Point<T, W> {
Point {
x: self.x,
y: other.y,
}
}
}
impl Point<f32, f32> {
// Specific types of Point's
fn distance_from_origin(self) -> f32 {
(self.x.powi(2) + self.y.powi(2)).sqrt()
}
}
fn main() {
let p1 = Point { x: 5, y: 10.4 };
let p2 = Point { x: "Hello", y: 'c' };
let p3 = p1.mixup(p2);
println!("p3.x = {}, p3.y = {}", p3.x, p3.y);
let p4 = Point { x: 1.0, y: 1.0 };
println!("distance: {}", p4.distance_from_origin());
}