Difference between revisions of "Concept (generic programming)"
From Wiki @ Karl Jones dot com
Karl Jones (Talk | contribs) (Created page with "In generic programming, a concept is a description of supported operations on a type, including syntax and semantics. In this way, concepts are related to Abtract type|...") |
Karl Jones (Talk | contribs) |
||
Line 15: | Line 15: | ||
* [https://en.wikipedia.org/wiki/Concept_(generic_programming) Concept (generic programming)] @ Wikipedia.org | * [https://en.wikipedia.org/wiki/Concept_(generic_programming) Concept (generic programming)] @ Wikipedia.org | ||
− | |||
− | |||
− | |||
− | |||
− | |||
[[Category:Computer programming]] | [[Category:Computer programming]] |
Revision as of 07:27, 4 September 2016
In generic programming, a concept is a description of supported operations on a type, including syntax and semantics.
In this way, concepts are related to abstract base classes but concepts do not require a subtype relationship.
See also
- Protocol (object-oriented programming)
- Concepts (C++)
- ConceptGCC
- Generic programming
- Interface (Java)
External links
- Concept (generic programming) @ Wikipedia.org