Generic Programming and Type Parameter
·
개발
What is Generic Programming? - Generic programming is a style of computer programming in which algorithms are written in terms of types to-be-specified-later that are then instantiated when needed for specific types provides as parameter. Type parameter? - Type parameter like 'T' in TypeScript, are a fundamental aspect of generic programming, a programming style where algorithms are written in t..