/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

www.douggregor.net
| | entangledlogs.com
5.6 parsecs away

Travel
| | Generic Programming: Generating part of programs Introduction Generic Programming: Programming with generic parameters to avoid unnecessary code duplication and encourage code reuse. Polymorphism is also another technique to solve code reuse Puts implicit constraints on the generic types that are to be fulfilled by concrete types. template T adder(T LHS, T RHS) { return LHS + RHS; } struct Foo { inv Val = 0; } Foo f = adder(Foo{}, Foo{}): In this code snippet, we assume that Foo meets the requirement tha...
| | www.timekl.com
3.4 parsecs away

Travel
| | Swift Generics 2: Existentials Boogaloo It's been just over two years since we first saw "Improving the UI of generics," the discussion post abo...
| | hypirion.com
5.1 parsecs away

Travel
| | When generics comes out, here's a possible way to use it for typed HTTP servers in Go. As a bonus, there's a short "rant" about how the implementation causes functional programming to be hard.
| | lickability.com
32.1 parsecs away

Travel
| It's the WWDC post you've been waitingfor