Explore >> Select a destination


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...
| | timekl.com
3.2 parsecs away

Travel
| | Swift Generics Evolution Earlier this week, Joe Groff of the Swift Core Team published a massive discussion post on the Swift forums. It discuss...
| | faultlore.com
3.1 parsecs away

Travel
| |
| | www.codevoid.net
40.5 parsecs away

Travel
| While making a concerted effort to learn Swift properly, I finally understood an unexpected pattern I saw with extensions