C++ Boost

Boost.dynamic_any

Header < boost/dynamic_any/operations.hpp>


Contents

Introduction
Values
{{value name}}
Types
{{type name}}
Classes
Class increment
Functions
{{function name}}
Objects
{{object name}}
Example(s)

Introduction

{{Introductory text}}

Values

{{Value specifications}}

Types

{{Type specifications}}

Classes

Class increment

Unary function that accepts its sole argument of any type by non-const reference.

Synopsys

namespace boost { namespace dynamic_any {

  struct increment : function<increment, void (arg &)>
  {
     template<class T>
     void call(T & a) const
     {
        ++a;
     }
  };

} } // namespace boost { namespace dynamic_any {
Requires: if a is an object of any to which increment applies
Effects: increment()(a)
Postconditions: {{text}}
Returns: {{text}}
Throws: {{text}}
Complexity: {{text}}
Note: {{text}}
Danger: {{text}}
Rationale: {{text}}
Requires: {{text}}
Effects: {{text}}
Postconditions: {{text}}
Returns: {{text}}
Throws: {{text}}
Complexity: {{text}}
Note: {{text}}
Danger: {{text}}
Rationale: {{text}}

Functions

{{function}}
Requires: {{text}}
Effects: {{text}}
Postconditions: {{text}}
Returns: {{text}}
Throws: {{text}}
Complexity: {{text}}
Note: {{text}}
Danger: {{text}}
Rationale: {{text}}

Objects

{{Object specifications}}

Example(s)

{{Example(s)}}

Revised 05 November, 2001

© Copyright Alexander Nasonov 2002-2003. All Rights Reserved.