Click here to Skip to main content
15,868,016 members
Everything / Templates

Templates

templates

Great Reads

by Bruno van Dooren
How concepts can be used in template programming for partial specialization
by Kunal Chowdhury «IN»
Customized Scrolling in Silverlight using Expression Blend
by Vincent Maverick Durano
The new version of ApiBoilerPlate has recently been released. In this post, we will take a look at the new features added to the template.
by Anton Chibisov
This tutorial showcases how to implement C++ delegates which are capable of being bound to methods and functions having arbitrary signature, i.e., any number and type of parameters and return value.

Latest Articles

by Bruno van Dooren
Ways to enforce an interface contract on static methods, similar to what you would expect from static virtual methods if they'd exist in C++
by Bruno van Dooren
How concepts can be used in template programming for partial specialization
by Bruno van Dooren
This article describes a way to hash data using the latest Win32 API and C++
by honey the codewitch
Make your projects far more powerful with some foundational code templating techniques

All Articles

Sort by Score

Templates 

8 Sep 2022 by Bruno van Dooren
How concepts can be used in template programming for partial specialization
13 Nov 2010 by Kunal Chowdhury «IN»
Customized Scrolling in Silverlight using Expression Blend
1 Dec 2019 by Vincent Maverick Durano
The new version of ApiBoilerPlate has recently been released. In this post, we will take a look at the new features added to the template.
13 Apr 2015 by Anton Chibisov
This tutorial showcases how to implement C++ delegates which are capable of being bound to methods and functions having arbitrary signature, i.e., any number and type of parameters and return value.
23 Mar 2021 by honey the codewitch
Make your code more efficient by hacking your compiler to improve its optimization capabilities
26 Aug 2022 by Bruno van Dooren
This article describes a way to hash data using the latest Win32 API and C++
28 Oct 2021 by honey the codewitch
Make your projects far more powerful with some foundational code templating techniques
16 Jul 2015 by Shivprasad koirala
In this article, we will demonstrate Template Pattern reusing ADO.NET.
14 Jul 2014 by Kornfeld Eliyahu Peter
How to access controls created from ASP.NET template...
18 Oct 2020 by Espen Harlinn
An introduction to C++ 20 concepts
24 Nov 2011 by Scanix
SystemFramework defines interfaces, classes, and types to support a native runtime system with its own garbage collector, delegates, etc. The design of SystemFramework classes is similar to those of the .NET Framework.
28 Oct 2021 by honey the codewitch
This is a little templating engine build tool I use to make my code generation projects more maintainable.
7 Mar 2013 by Weidong Shen
This article describes the IClientChangeTracking interface generated by Self-Tracking Entity Generator and Visual Studio 2012.
2 Feb 2023 by Bruno van Dooren
Ways to enforce an interface contract on static methods, similar to what you would expect from static virtual methods if they'd exist in C++
2 May 2012 by Eugene Polyhaev
Fully functional groovy template scriptlets inside a docx document
12 Oct 2013 by ASP.NET Community
Template MethodThe Template Method is know as a behavioral pattern which lets subclasses implement behaviour that can vary. In the example below we
23 Jun 2020 by Greg Utas
Implementing corruptible queues that don't manage memory
30 Mar 2016 by DaveAuld
Look into the Jade Templating engine and the required syntax
24 May 2017 by john morrison leon
Type quantities according to the units in which they are measured. A complete implementation of units of measurement as a data type for C++ 11.
13 Mar 2013 by Michael D Bray
Filling in text templates from a data source.
8 Sep 2013 by XiaoChuan Yu
Talks about how to customize the look and behaviour of WPF Expander by templating it.
8 May 2011 by Kunal Chowdhury «IN»
ImplicitDataTemplate is a new feature in Silverlight 5. Using ImplicitDataTemplate, you can declare multiple Data Templates for your control and based on the data type, you can load the proper data template automatically. In this article, we will discuss on the same step by step with a good example.
18 Dec 2013 by Joren Heit
A Hybrid Framework Code-Generator for CUDA
16 Jan 2013 by Ajay Vijayvargiya
Covering the nitty-gritties of C++ templates.
25 Apr 2012 by Jovan Popovic(MSFT)
This article explains how client-side view engines can be used in ASP.NET MVC.
13 Oct 2017 by Satprem Pamudurthy
This article describes a C++ technique called type erasure and shows that it can be used to write generic algorithms on runtime types. It then examines the relationship between type erasure and other forms of polymorphism through the notion of type compatibility.
27 Dec 2010 by Ashish Kaila
Declaratively and visually create custom windows in WPF
3 Nov 2014 by David Serrano Martínez
You have not lifted your finger off the mouse button yet when the calculation is served.
16 Feb 2016 by geoyar
This article is about metaprogramming with compile time type lists.
8 May 2021 by Ryan Scott White
A simple drop-in function that provides T4 like template based text generation.
23 Dec 2015 by Shvetsov Evgeniy
Helper functions to deal with the individual bits & digits, hashing and other
11 Dec 2016 by Marco Bertschi
A native C++ implementation of a very basic Doubly Linked List
28 Dec 2014 by Michael Gazonda
Have you ever been working with templates or constexpr and wanted to run a loop? Or maybe you have a loop you'd like to unroll and see if your program will run faster? Welcome to static_for.
15 Apr 2019 by Michael Chourdakis
Use Windows new ThreadPool through a single C++ 11 class
1 Mar 2016 by Evgeny Zavalkovsky
`Memoization' of a computation result makes computation faster by trading space for time. Here you will see extremely simple and "easy to use" Memoization Infrastructure.
26 Mar 2018 by Jeevanandan J
How to make the admin template by ourselves instead of buying
18 Sep 2015 by john morrison leon
observer_ptr, a smart observer guaranteed to always be either valid or test as null. Transparently harnessing unique_ptr's custom deleter feature to detect object destruction.
23 Sep 2015 by Shvetsov Evgeniy
Safe and versatile iterator for user types
2 Sep 2011 by Alexander Bessonov
A simple high-level IPC library with ability to use native C++ interfaces.
29 Oct 2012 by David Corne
A class to represent valid/invalid data and using the mutable keyword
2 Oct 2014 by biicode
This posts tries to introduce template metaprogramming to the average C++ programmer, showing how it works, what can do, and finally leading with its problems trying to make it easier than in the old days of C++98, thanks to C++11 and C++14 language improvements.
10 Jun 2014 by Evgeny Zavalkovsky
SW Message Bus represents message flow abstraction mechanism in a complex, multithreaded SW system.
5 Jun 2013 by Thorsten Bruning
29 Apr 2014 by Evgeny Zavalkovsky
An easy and an elegeant way to create "trusted" data variables.
16 Sep 2015 by Michael Chourdakis
A combination of std::vector and std::list which does not copy or move elements in insertion and still has continuous memory
21 Feb 2016 by Shvetsov Evgeniy
String class with the auto. managed memory pool and performance tweaks + support modules
4 Oct 2011 by Doc Lobster
Establishing a strong binding between enumerations and arrays
25 Sep 2014 by Sreekanth Mothukuru
In this article, we are going to create responsive HTML table using FooTable Plug-In and a hint of client side data binding using Handlebars.js library.
19 Apr 2011 by Joel Laird
A framework for creating and using HTML components
25 Nov 2020 by Greg Utas
Yet another article on this topic?!
18 Feb 2011 by Christopher R Davis
6 Jul 2020 by Greg Utas
Registering and efficiently accessing polymorphic objects
25 May 2016 by Shvetsov Evgeniy
Numbers (positive AND negative integral/fractional) to english/russian words
3 Jun 2018 by Eng Kerollos Adel
New JavaScript library, this library makes display of HTML page from template and JavaScript object or object from API or from file easy with filter