• Home
  • Raw
  • Download

Lines Matching full:functions

14functions with the non-standard [@http://gcc.gnu.org/onlinedocs/gcc/Statement-Exprs.html statement…
23 [ [With Local Functions (GCC only)] [C++11 Lambdas] ]
27 The GCC lambda function macros are implemented using local functions (see also [@../../example/gcc_…
33 …_ in which case the implementation uses native lambdas instead of local functions in GCC statement…
35 Furthermore, local functions allow to bind data members directly while __CXX11_lambda_functions__ r…
36 …ot supported by these GCC lambda function macros because they are not supported by local functions.
43 It is possible to use local functions to check assertions between variables that are made constant …
53 …f `operator==` because both `x` and `y` are made constants (using local functions) within the bloc…
56 [ [With Local Functions] [N1613 Const-Blocks] ]
65 The constant block macros are implemented using local functions (see also [@../../example/const_blo…
91 For curiosity, here we show how to re-implement scope exits using local functions.
92 One small advantage of scope exits that use local functions is that they support constant binding.
102 [ [With Local Functions] [Boost.ScopeExit] ]
124 [section Boost.Phoenix Functions]
126 Local functions can be used to create __Boost_Phoenix__ functions.
130 [ [Local Functions] [Global Functor] ]
134 …ted here mainly as a curiosity because __Boost_Phoenix__ functions created from local functions ha…
137 Local functions can only be monomorphic because they are implemented using local classes and local …
145 …losure_(computer_science) closures] that illustrate how to return local functions to the calling s…
157 [section GCC Nested Functions]
159 …orts local functions as a non-standard extension under the name of [@http://gcc.gnu.org/onlinedocs…
160 Note that nested functions are exclusively a C extension of the GCC compiler (they are not supporte…
162 …examples are taken form the GCC nested function documentation and programmed using local functions:
175 The following examples are taken from different C++ "N-papers" and programmed using local functions: