|
You are here |
nora.codes | ||
| | | | |
entangledlogs.com
|
|
| | | | | 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... | |
| | | | |
aayushsahu.com
|
|
| | | | | My GSoC experience blog | |
| | | | |
mrcat.au
|
|
| | | | | 33 is a register-based esoteric programming language with a small number of commands (33 of them, in fact) to manipulate lists, strings, and integers. I have implemented an interpreter in multiple languages, each with slight differences in semantics. | |
| | | | |
notes.neeasade.net
|
|
| | | [AI summary] The author expresses a deep appreciation for Emacs, highlighting its programmable state, blended environment, and extensive customization capabilities, while also sharing various customizations and integrations they've implemented. | ||