2004-11-28 03:35:12 +00:00
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
< html xmlns = "http://www.w3.org/1999/xhtml" xml:lang = "en" lang = "en" >
< head >
< meta http-equiv = "Content-Type" content = "text/html; charset=utf-8" / >
2010-08-09 20:07:24 +00:00
< meta name = "generator" content = "Docutils 0.7: http://docutils.sourceforge.net/" / >
2004-11-28 03:35:12 +00:00
< title > The MPL Reference Manual: Terminology< / title >
< link rel = "stylesheet" href = "../style.css" type = "text/css" / >
< / head >
< body class = "docframe refmanual" >
< table class = "header" > < tr class = "header" > < td class = "header-group navigation-bar" > < span class = "navigation-group" > < a href = "./aux-lambda-support.html" class = "navigation-link" > Prev< / a > < a href = "./categorized-index.html" class = "navigation-link" > Next< / a > < / span > < span class = "navigation-group-separator" > | < / span > < span class = "navigation-group" > < a href = "./macros.html" class = "navigation-link" > Back< / a > < a href = "./categorized-index.html" class = "navigation-link" > Along< / a > < / span > < span class = "navigation-group-separator" > | < / span > < span class = "navigation-group" > < a href = "../refmanual.html" class = "navigation-link" > Up< / a > < a href = "../refmanual.html" class = "navigation-link" > Home< / a > < / span > < span class = "navigation-group-separator" > | < / span > < span class = "navigation-group" > < a href = "./refmanual_toc.html" class = "navigation-link" > Full TOC< / a > < / span > < / td >
< td class = "header-group page-location" > < a href = "../refmanual.html" class = "navigation-link" > Front Page< / a > / < a href = "./terminology.html" class = "navigation-link" > Terminology< / a > < / td >
< / tr > < / table > < div class = "header-separator" > < / div >
< div class = "section" id = "terminology" >
2010-08-09 20:07:24 +00:00
< h1 > < a class = "toc-backref" href = "../refmanual.html#id1610" > Terminology< / a > < / h1 >
2009-08-17 11:30:52 +00:00
< dl class = "docutils" id = "overloaded-name" >
2021-12-02 03:37:28 +00:00
< dt > < span id = "label-terminology" > < / span > Overloaded name< / dt >
2004-11-28 03:35:12 +00:00
< dd > Overloaded name is a term used in this reference documentation to designate
2009-08-17 11:30:52 +00:00
a metafunction providing more than one public interface. In reality,
2004-11-28 03:35:12 +00:00
class template overloading is nonexistent and the referenced functionality
is implemented by other, unspecified, means.< / dd >
< / dl >
2009-08-17 11:30:52 +00:00
< dl class = "docutils" id = "concept-identical" >
< dt > Concept-identical< / dt >
< dd > A sequence < tt class = "literal" > < span class = "pre" > s1< / span > < / tt > is said to be concept-identical to a sequence < tt class = "literal" > < span class = "pre" > s2< / span > < / tt > if
2004-11-28 03:35:12 +00:00
< tt class = "literal" > < span class = "pre" > s1< / span > < / tt > and < tt class = "literal" > < span class = "pre" > s2< / span > < / tt > model the exact same set of concepts.< / dd >
< / dl >
2009-08-17 11:30:52 +00:00
< dl class = "docutils" id = "bind-expression" >
2004-11-28 03:35:12 +00:00
< dt > Bind expression< / dt >
2009-08-17 11:30:52 +00:00
< dd > < p class = "first" > A bind expression is simply that — an instantiation of one of the < a class = "reference internal" href = "./bind.html" > bind< / a >
2004-11-28 03:35:12 +00:00
class templates. For instance, these are all bind expressions:< / p >
< pre class = "literal-block" >
2009-08-17 11:30:52 +00:00
< a href = "./bind.html" class = "identifier" > bind< / a > < quote3< < a href = "./if.html" class = "identifier" > if_< / a > > , < a href = "./placeholders.html" class = "identifier" > _1< / a > ,int,long >
< a href = "./bind.html" class = "identifier" > bind< / a > < < a href = "./placeholders.html" class = "identifier" > _1< / a > , < a href = "./bind.html" class = "identifier" > bind< / a > < < a href = "./plus.html" class = "identifier" > plus< / a > < > , < a href = "./int.html" class = "identifier" > int_< / a > < 5> , < a href = "./placeholders.html" class = "identifier" > _2< / a > > >
2004-11-28 03:35:12 +00:00
< a href = "./bind.html" class = "identifier" > bind< / a > < < a href = "./times.html" class = "identifier" > times< / a > < > , < a href = "./int.html" class = "identifier" > int_< / a > < 2> , < a href = "./int.html" class = "identifier" > int_< / a > < 2> >
< / pre >
< p > and these are not:< / p >
< pre class = "last literal-block" >
2009-08-17 11:30:52 +00:00
< a href = "./if.html" class = "identifier" > if_< / a > < < a href = "./placeholders.html" class = "identifier" > _1< / a > , < a href = "./bind.html" class = "identifier" > bind< / a > < < a href = "./plus.html" class = "identifier" > plus< / a > < > , < a href = "./int.html" class = "identifier" > int_< / a > < 5> , < a href = "./placeholders.html" class = "identifier" > _2< / a > > , < a href = "./placeholders.html" class = "identifier" > _2< / a > >
< a href = "./protect.html" class = "identifier" > protect< / a > < < a href = "./bind.html" class = "identifier" > bind< / a > < quote3< < a href = "./if.html" class = "identifier" > if_< / a > > , < a href = "./placeholders.html" class = "identifier" > _1< / a > ,int,long > >
< a href = "./placeholders.html" class = "identifier" > _2< / a >
2004-11-28 03:35:12 +00:00
< / pre >
< / dd >
< / dl >
< / div >
< div class = "footer-separator" > < / div >
< table class = "footer" > < tr class = "footer" > < td class = "header-group navigation-bar" > < span class = "navigation-group" > < a href = "./aux-lambda-support.html" class = "navigation-link" > Prev< / a > < a href = "./categorized-index.html" class = "navigation-link" > Next< / a > < / span > < span class = "navigation-group-separator" > | < / span > < span class = "navigation-group" > < a href = "./macros.html" class = "navigation-link" > Back< / a > < a href = "./categorized-index.html" class = "navigation-link" > Along< / a > < / span > < span class = "navigation-group-separator" > | < / span > < span class = "navigation-group" > < a href = "../refmanual.html" class = "navigation-link" > Up< / a > < a href = "../refmanual.html" class = "navigation-link" > Home< / a > < / span > < span class = "navigation-group-separator" > | < / span > < span class = "navigation-group" > < a href = "./refmanual_toc.html" class = "navigation-link" > Full TOC< / a > < / span > < / td >
2009-08-17 11:30:52 +00:00
< td > < div class = "copyright-footer" > < div class = "copyright" > Copyright © 2001-2009 Aleksey Gurtovoy and David Abrahams< / div >
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at < a class = "reference external" href = "http://www.boost.org/LICENSE_1_0.txt" target = "_top" > http://www.boost.org/LICENSE_1_0.txt< / a > )< / div > < / td > < / tr > < / table > < / body >
2004-11-28 03:35:12 +00:00
< / html >