From 92a706415ae765fb1b8098a8e42bf8ed7b78a0ee Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Tue, 25 Aug 2020 12:01:26 -0400 Subject: [PATCH] Some parts aren't specifically static polymorphism, but are more direct comparisons to Rust traits (which form the basis of Rust static polymorphism) --- _posts/2020-08-05-static-polymorphism.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_posts/2020-08-05-static-polymorphism.md b/_posts/2020-08-05-static-polymorphism.md index 5ed1350..d41646f 100644 --- a/_posts/2020-08-05-static-polymorphism.md +++ b/_posts/2020-08-05-static-polymorphism.md @@ -7,7 +7,8 @@ tags: [python] --- Other languages have done similar things (interfaces in Java), but think the Rust comparison is -useful because both languages are "system." +useful because both languages are "system." Mostly looking at how static polymorphism is implemented +in C++ and Rust, but also some comparisons to Rust behavior not strictly related to polymorphism. # Simple Example