Explore >> Select a destination


You are here

www.foonathan.net
| | aradaelli.com
5.1 parsecs away

Travel
| | [AI summary] The author discusses their experience with the programming language D, highlighting its features, advantages over C/C++, and reasons for preferring it despite its niche status.
| | entangledlogs.com
4.9 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...
| | arne-mertz.de
5.5 parsecs away

Travel
| | Contents In C++ there are two ways of type conversions: implicit and explicit type conversions. The latter are called type casts and they are what this post is about. Overview [...]
| | www.moddable.com
29.1 parsecs away

Travel
| Presentation to TC39, the JavaScript language committee, to introduce XS, the JavaScript engine by Moddable Tech. Background on the XS engine and technical details on techniques used to minimize memory and code size, while maintaining near full conformance.